diff options
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/test.yml | 16 | 
1 files changed, 10 insertions, 6 deletions
| diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2433f6c..6050503 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,18 +1,22 @@ -name: Build Test -on: [push, pull_request] +name: build-test + +on: +  - push +  - pull_request +  jobs:    build: -    name: Build +    name: build      runs-on: ubuntu-latest      steps:        - uses: actions/checkout@v2 -      - name: Setup Hugo +      - name: setup Hugo          uses: peaceiris/actions-hugo@v2          with: -          hugo-version: 'latest' +          hugo-version: "latest" -      - name: Build +      - name: build example          run: |            cd exampleSite            mkdir themes | 
