Bump actions/checkout from 4.1.7 to 4.2.2 #80
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: coq / main | |
on: | |
push: | |
branches: [master, main] | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
ci: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
- name: Pull coq docker image | |
run: docker pull coqorg/coq:8.9 | |
- name: Run exercism/coq ci (runs tests) for all exercises | |
run: | | |
export NJOBS=2 | |
# Disable for now, as this step was already disabled in Travis config | |
# docker run --rm coqorg/coq:8.9 coq_makefile -f _CoqProject -o Makefile && make && make install |