summaryrefslogtreecommitdiffstats
path: root/.github/workflows/test.yml
blob: 2433f6c8bebf373ab1a0fd5b26aff2dbb003fab0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name: Build Test
on: [push, pull_request]
jobs:
  build:
    name: Build
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2

      - name: Setup Hugo
        uses: peaceiris/actions-hugo@v2
        with:
          hugo-version: 'latest'

      - name: Build
        run: |
          cd exampleSite
          mkdir themes
          ln -s ../.. themes/fuji
          hugo