Trigger CI with comment #69
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | ||
on: | ||
push: | ||
branches: | ||
- 'main' | ||
pull_request: | ||
issue_comment: | ||
if: ${{ github.event.issue.pull_request }} && contains(github.event.comment.body, 'retest please') | ||
Check failure on line 9 in .github/workflows/ci.yml GitHub Actions / CIInvalid workflow file
|
||
jobs: | ||
build-and-deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: olafurpg/setup-scala@v10 | ||
- uses: coursier/cache-action@v5 | ||
- name: Build backend | ||
run: sbt compile | ||
- name: Build site | ||
run: sbt build |