We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bbf08c commit 27a225aCopy full SHA for 27a225a
.github/workflows/ci-ubuntu.yml
@@ -4,7 +4,7 @@ on:
4
branches:
5
jobs:
6
courseworks:
7
- name: Check 0-Install.agda
+ name: Check courseworks
8
runs-on: ubuntu-latest # or macOS-latest, or windows-latest
9
steps:
10
- uses: actions/checkout@v4
@@ -30,4 +30,8 @@ jobs:
30
31
# Check 1-Circuits.agda
32
- run: make
33
- working-directory: courseworks/1-Circuits
+ working-directory: courseworks/1-Circuits
34
+
35
+ # Check 2-Genetic.agda
36
+ - run: make ci
37
+ working-directory: courseworks/2-Genetic
courseworks/2-Genetic/Makefile
@@ -4,3 +4,6 @@ all:
clean:
rm -rf MAlonzo
+ci:
+ agda 2-Genetic.agda; true
0 commit comments