Skip to content

Commit

Permalink
Merge pull request #7 from fpco/bump-version
Browse files Browse the repository at this point in the history
Bump dependencies, add github action
  • Loading branch information
snoyberg authored Nov 10, 2024
2 parents bab315b + dea1973 commit 01dc833
Show file tree
Hide file tree
Showing 5 changed files with 701 additions and 272 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
name: Test

on:
push:
branches: [main]
pull_request:
workflow_dispatch:

env:
CARGO_TERM_COLOR: always
CARGO_INCREMENTAL: 0
CARGO_NET_RETRY: 10
RUST_BACKTRACE: short
RUSTUP_MAX_RETRIES: 10

jobs:
rust_tests:
runs-on: ubuntu-latest
concurrency:
group: test-${{ github.ref }}
cancel-in-progress: true
steps:
- uses: actions/checkout@v4
- uses: taiki-e/install-action@v2
with:
tool: [email protected],[email protected]
- uses: dtolnay/rust-toolchain@master
with:
toolchain: 1.81.0
components: rustfmt, clippy
- name: Compile
run: just cargo-compile
- name: Lint
run: just lint
- name: Test
run: just cargo-test
Loading

0 comments on commit 01dc833

Please sign in to comment.