Skip to content

release for open source #1

release for open source

release for open source #1

Workflow file for this run

name: Rust CI
on:
push:
branches: ['main']
pull_request:
branches: ['main']
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose --all-features
- name: Run tests
run: cargo test --verbose
- name: Lint
run: cargo clippy
- name: Check Formatting
run: cargo fmt --check