Skip to content

support-for-all-allowed-files #44

support-for-all-allowed-files

support-for-all-allowed-files #44

Workflow file for this run

# Based on https://github.com/actions-rs/meta/blob/master/recipes/quickstart.md
on:
push:
paths:
- 'examples/**'
- 'src/**'
- 'Cargo.toml'
name: check
env:
ACTIX_PORT: 8080
jobs:
test:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: dtolnay/[email protected]
with:
components: clippy, rustfmt
- run: cargo clippy -- --deny warnings
- run: cargo fmt --check
- run: cargo test
- run: cargo publish --dry-run