Skip to content

chore: bump version to 0.7.1-sync.3 #9

chore: bump version to 0.7.1-sync.3

chore: bump version to 0.7.1-sync.3 #9

Workflow file for this run

name: CI
on:
push:
branches:
- master
- v0.7-sync
pull_request:
branches:
- master
- v0.7-sync
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Update local toolchain
run: |
rustup update
rustup component add clippy
- name: Lint
run: |
cargo fmt -- --check
cargo clippy --all --all-features -- -D warnings
- name: Test
run: |
cargo check --all --all-features
cargo test --all --all-features
- name: Build
run: |
cargo build --all-features --release