Skip to content

Update coq-action.yml #137

Update coq-action.yml

Update coq-action.yml #137

Workflow file for this run

name: CI
on:
workflow_dispatch
push:

Check failure on line 5 in .github/workflows/coq-action.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/coq-action.yml

Invalid workflow file

You have an error in your yaml syntax on line 5
branches: ['main']
pull_request:
branches: ['**'] # for all submitted Pull Requests
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
coq_version:
- '8.12'
- '8.13'
- '8.14'
- '8.15'
- '8.16'
- '8.17'
- '8.18'
- 'dev'
ocaml_version:
- 'default'
fail-fast: false # don't stop jobs if one fails
steps:
- uses: actions/checkout@v3
- uses: coq-community/docker-coq-action@v1
with:
opam_file: 'coq-quantumlib.opam'
coq_version: ${{ matrix.coq_version }}
ocaml_version: ${{ matrix.ocaml_version }}