Add core lib for Coq generic printer #116
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: Check licenses | |
on: | |
pull_request: | |
merge_group: | |
workflow_dispatch: | |
push: | |
branches: [main] | |
jobs: | |
tests: | |
name: nix-action | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: extractions/setup-just@v1 | |
- name: Set-up OCaml | |
uses: ocaml/setup-ocaml@v3 | |
with: | |
ocaml-compiler: 5 | |
- name: Install cargo-deny | |
run: cargo install cargo-deny | |
- name: Install cargo-deny | |
run: cargo install toml2json | |
- name: Check the licenses | |
run: just check-licenses | |