Skip to content

Commit

Permalink
Merge branch 'main' into dependabot/cargo/net2-0.2.37
Browse files Browse the repository at this point in the history
  • Loading branch information
Yamaguchi authored Apr 22, 2024
2 parents 06a4521 + 805f935 commit 052a2c8
Show file tree
Hide file tree
Showing 13 changed files with 982 additions and 662 deletions.
25 changes: 18 additions & 7 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,23 @@ jobs:
build:

runs-on: ubuntu-latest
env:
CARGO_INCREMENTAL: 1

steps:
- uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose
- name: Install
run: cargo install --path .
- name: Checkout
uses: actions/checkout@v2
- name: Set up cargo cache
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build
run: cargo build --release
- name: Run tests
run: cargo test --verbose
Loading

0 comments on commit 052a2c8

Please sign in to comment.