diff --git a/.github/workflows/cona-isa.yml b/.github/workflows/cona-isa.yml index 594a26b..a1db8c6 100644 --- a/.github/workflows/cona-isa.yml +++ b/.github/workflows/cona-isa.yml @@ -216,4 +216,15 @@ jobs: - name: Test with pytest run: | pip install pytest - pytest \ No newline at end of file + pytest src/bin/main.py + + # Jekyll + jekyll: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Build the site in the jekyll/builder container + run: | + docker run \ + -v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \ + jekyll/builder:latest /bin/bash -c "chmod 777 /srv/jekyll && jekyll build --future" \ No newline at end of file diff --git a/.github/workflows/jekyll.yml b/.github/workflows/jekyll.yml deleted file mode 100644 index edec522..0000000 --- a/.github/workflows/jekyll.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: Jekyll site CI - -on: [push] - -jobs: - build: - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - name: Build the site in the jekyll/builder container - run: | - docker run \ - -v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \ - jekyll/builder:latest /bin/bash -c "chmod 777 /srv/jekyll && jekyll build --future"