prettify: change argument order, strip useless types #415
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-action | |
on: | |
push: | |
branches: [master] | |
permissions: | |
contents: read | |
jobs: | |
build: | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: "actions/checkout@v4" | |
with: | |
submodules: "true" | |
- name: "Docker Coq action" | |
uses: "coq-community/docker-coq-action@v1" | |
with: | |
coq_version: "latest" | |
before_install: | | |
startGroup "Workaround permission issue" | |
sudo chown -R coq:coq . | |
endGroup | |
startGroup "Print opam config" | |
opam config list; opam repo list; opam list | |
endGroup | |
- name: Revert permissions | |
if: ${{ always() }} | |
run: sudo chown -R 1001:116 . |