Skip to content

Commit

Permalink
Merge pull request #244 from rmatthes/githubactionsv4
Browse files Browse the repository at this point in the history
GitHub action v3 -> v4, Dune language 3.5 -> 3.8, Coq language 0.6 -> 0.8
  • Loading branch information
rmatthes authored Feb 8, 2024
2 parents d6f8dca + 9f20d94 commit 039a6bc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-typetheory.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,29 +20,29 @@ jobs:
strategy:
fail-fast: false
matrix:
coq-version: [dev, latest, 8.16, 8.15]
coq-version: [dev, latest, 8.16]
ocaml-version: [4.14-flambda]
name: Build with ${{ matrix.coq-version }}
runs-on: ubuntu-22.04

steps:
# Checkout UniMath in the current directory.
- name: Checkout UniMath
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
repository: UniMath/UniMath
path: .
clean: false

# Checkout TypeTheory in TypeTheory/
- name: Checkout TypeTheory
uses: actions/checkout@v3
uses: actions/checkout@v4
with:
path: TypeTheory

# Grab the cache if available. We tell dune to use $(pwd)/dune-cache/ in
# the custom_script below.
- uses: actions/cache@v3
- uses: actions/cache@v4
with:
path: dune-cache
key: TypeTheory-coq-${{ matrix.coq-version }}-${{ github.run_id }}-${{ github.run_number }}
Expand Down
4 changes: 2 additions & 2 deletions dune-project
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
(lang dune 3.5)
(using coq 0.6)
(lang dune 3.8)
(using coq 0.8)
(name TypeTheory)

0 comments on commit 039a6bc

Please sign in to comment.