-
Notifications
You must be signed in to change notification settings - Fork 8
40 lines (38 loc) · 858 Bytes
/
ci.yaml
File metadata and controls
40 lines (38 loc) · 858 Bytes
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
name: ci
on:
pull_request:
push:
branches:
- main
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Lint
run: |
make fmt
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Typecheck
run: |
make typecheck
archive:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: |
make build
- name: Archive Flight Software
uses: actions/upload-artifact@v4
with:
name: proveskit-flight-software
path: artifacts/proves/flight-software
- name: Archive Ground Station
uses: actions/upload-artifact@v4
with:
name: proveskit-ground-station
path: artifacts/proves/ground-station