Skip to content

Commit 27a225a

Browse files
authored
[ ci ] build CW2 (#5)
* [ ci ] build CW2 * [ fix ] syntax & comment * [ fix ] job name * [ ci ] do not compile holey file
1 parent 5bbf08c commit 27a225a

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

.github/workflows/ci-ubuntu.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
branches:
55
jobs:
66
courseworks:
7-
name: Check 0-Install.agda
7+
name: Check courseworks
88
runs-on: ubuntu-latest # or macOS-latest, or windows-latest
99
steps:
1010
- uses: actions/checkout@v4
@@ -30,4 +30,8 @@ jobs:
3030

3131
# Check 1-Circuits.agda
3232
- run: make
33-
working-directory: courseworks/1-Circuits
33+
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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,6 @@ all:
44

55
clean:
66
rm -rf MAlonzo
7+
8+
ci:
9+
agda 2-Genetic.agda; true

0 commit comments

Comments
 (0)