Skip to content

Merge pull request #4 from buildkite/dependabot/cargo/webpki-0.22.2 #21

Merge pull request #4 from buildkite/dependabot/cargo/webpki-0.22.2

Merge pull request #4 from buildkite/dependabot/cargo/webpki-0.22.2 #21

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
env:
BUILDKITE_ANALYTICS_TOKEN: ${{ secrets.BUILDKITE_ANALYTICS_TOKEN }}
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --all-targets
- name: Run tests
run: cargo test -- -Z unstable-options --format json --report-time | cargo run
- name: Run clippy
run: cargo clippy