-
Notifications
You must be signed in to change notification settings - Fork 0
55 lines (54 loc) · 1.37 KB
/
ci.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
---
name: CI
on: [ workflow_dispatch, push, pull_request ]
jobs:
omnilint:
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- uses: docker://lpenz/omnilint:0.5.1
rust:
uses: lpenz/ghworkflow-rust/.github/workflows/[email protected]
with:
coveralls: true
publish_cratesio: false
publish_github_release: false
solve:
strategy:
matrix:
day:
- day01
- day02
- day03
- day04
- day05
- day06
- day07
- day08
- day09
- day10
- day11
- day12
- day13
- day14
- day15
- day16
part: [ a, b ]
# if: github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- uses: actions/[email protected]
- name: build ${{ matrix.day }}${{ matrix.part }}
run: |
cargo build \
--release \
-p ${{ matrix.day }} \
--bin ${{ matrix.day }}${{ matrix.part }}
- name: solve ${{ matrix.day }}${{ matrix.part }}
run: |
cargo build \
--release \
-p ${{ matrix.day }} \
--bin ${{ matrix.day }}${{ matrix.part }}
< ${{ matrix.day }}/input.txt \
2>&1 | tee "$GITHUB_STEP_SUMMARY"