Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
38 changes: 38 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
name: ci
on: [push, pull_request]
jobs:
msrv:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@1.77.0
- run: cargo test --all --locked
- run: cargo install --path . --locked
rust:
runs-on: ubuntu-latest
steps:
Expand All @@ -11,6 +18,37 @@ jobs:
- run: cargo fmt --all --check
- run: cargo clippy --all-targets -- -D warnings
- run: cargo test --all
windows-data:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo test --all --locked
release-build:
name: release build (${{ matrix.target }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- target: x86_64-unknown-linux-gnu
os: ubuntu-latest
archive_ext: tar.gz
- target: aarch64-apple-darwin
os: macos-latest
archive_ext: tar.gz
- target: x86_64-apple-darwin
os: macos-latest
archive_ext: tar.gz
- target: x86_64-pc-windows-msvc
os: windows-latest
archive_ext: zip
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- name: Install release target
run: rustup target add ${{ matrix.target }}
- run: cargo build --release --locked --target ${{ matrix.target }}
python-parity:
runs-on: ubuntu-latest
steps:
Expand Down
Loading
Loading