Skip to content

Commit 168c4d7

Browse files
Merge pull request #15 from Jim-Hodapp-Coaching/flags
2 parents 9937b55 + f8510ad commit 168c4d7

File tree

8 files changed

+864
-424
lines changed

8 files changed

+864
-424
lines changed

.github/workflows/ci.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
name: Build & Tests
2+
3+
on:
4+
push:
5+
pull_request:
6+
7+
env:
8+
CARGO_TERM_COLOR: always
9+
10+
jobs:
11+
build_test:
12+
name: Build & test
13+
runs-on: ubuntu-22.04
14+
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@v3
18+
19+
- name: Install Rust toolchain
20+
uses: dtolnay/rust-toolchain@stable
21+
with:
22+
targets: ${{ matrix.job.target }}
23+
24+
- name: Use cached dependencies
25+
uses: Swatinem/rust-cache@v2
26+
27+
- name: Build
28+
run: cargo build
29+
30+
- name: Test
31+
run: cargo test

0 commit comments

Comments
 (0)