1 2 3 4 5 6 7 8 9 10 11 12
name: 🛠️🔒 on: [push] jobs: validate: runs-on: ubuntu-latest steps: - uses: actions/checkout@v7 - run: rustup show - run: cargo fmt --check - run: cargo clippy --all-features - run: cargo test --no-default-features - run: cargo test --all-features