Skip to content

Commit 01dc833

Browse files
authored
Merge pull request #7 from fpco/bump-version
Bump dependencies, add github action
2 parents bab315b + dea1973 commit 01dc833

File tree

5 files changed

+701
-272
lines changed

5 files changed

+701
-272
lines changed

.github/workflows/test.yaml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: Test
2+
3+
on:
4+
push:
5+
branches: [main]
6+
pull_request:
7+
workflow_dispatch:
8+
9+
env:
10+
CARGO_TERM_COLOR: always
11+
CARGO_INCREMENTAL: 0
12+
CARGO_NET_RETRY: 10
13+
RUST_BACKTRACE: short
14+
RUSTUP_MAX_RETRIES: 10
15+
16+
jobs:
17+
rust_tests:
18+
runs-on: ubuntu-latest
19+
concurrency:
20+
group: test-${{ github.ref }}
21+
cancel-in-progress: true
22+
steps:
23+
- uses: actions/checkout@v4
24+
- uses: taiki-e/install-action@v2
25+
with:
26+
27+
- uses: dtolnay/rust-toolchain@master
28+
with:
29+
toolchain: 1.81.0
30+
components: rustfmt, clippy
31+
- name: Compile
32+
run: just cargo-compile
33+
- name: Lint
34+
run: just lint
35+
- name: Test
36+
run: just cargo-test

0 commit comments

Comments
 (0)