Skip to content

Trigger CI with comment #69

Trigger CI with comment

Trigger CI with comment #69

Workflow file for this run

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

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 9, Col: 9): Unrecognized named-value: 'github'. Located at position 1 within expression: github.event.issue.pull_request
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