-
Notifications
You must be signed in to change notification settings - Fork 41
57 lines (51 loc) · 1.55 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
typecheck:
runs-on: ubuntu-latest
name: Typechecking
if: github.event.pull_request.draft == false
steps:
- name: "Clone repository"
uses: actions/checkout@v4
- name: "Print environment information"
shell: bash
run: |
echo "github.ref_name = ${{ github.ref_name }}"
echo "github.sha = ${{ github.sha }}"
echo "github.event.before = ${{ github.event.before }}"
echo "github.event.after = ${{ github.event.after }}"
echo "github.event.pull_request.head.sha = ${{ github.event.pull_request.head.sha }}"
- name: "Restore cached .agdai files"
id: cache-agdai-restore
uses: actions/cache/restore@v4
with:
path: _build
key: ${{ runner.os }}-agdai-cache-${{ github.ref_name }}-${{ github.event.before }}
restore-keys: |
${{ runner.os }}-agdai-cache-${{ github.ref_name }}-
- name: Run Agda
id: typecheck
uses: ayberkt/[email protected]
with:
main-file: AllModulesIndex.lagda
source-dir: source
unsafe: true
- name: "Save .agdai files"
id: cache-agdai-save
uses: actions/cache/save@v4
with:
path: _build
key: ${{ runner.os }}-agdai-cache-${{ github.ref_name }}-${{ github.event.after }}
- name: Upload HTML
id: html-upload
if: github.ref == 'refs/heads/master'
uses: actions/upload-artifact@v3
with:
name: html
path: source/html