Skip to content

Merge pull request #25 from Cakefish/feature/attribute_forwarding #50

Merge pull request #25 from Cakefish/feature/attribute_forwarding

Merge pull request #25 from Cakefish/feature/attribute_forwarding #50

Workflow file for this run

name: Rust
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions-rs/toolchain@v1
with:
toolchain: nightly-2023-07-10
override: true
components: rustfmt,clippy
- uses: actions/checkout@v3
- name: Check format
run: cargo fmt --check
- name: Run clippy
run: cargo clippy --verbose
- name: Run tests
run: cargo test --verbose