ci: add workflow_dispatch trigger to tests #26
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: attestation-agent coco_keyprovider tests | |
on: | |
push: | |
branches: | |
- 'main' | |
paths: | |
- 'attestation-agent/coco_keyprovider/**' | |
- '.github/workflows/aa_sample_keyprovider.yml' | |
pull_request: | |
paths: | |
- 'attestation-agent/coco_keyprovider/**' | |
- '.github/workflows/aa_sample_keyprovider.yml' | |
create: | |
workflow_dispatch: | |
jobs: | |
coco_keyprovider_ci: | |
name: Check | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
rust: | |
- stable | |
- nightly | |
steps: | |
- name: Code checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 1 | |
- name: Install Rust toolchain (${{ matrix.rust }}) | |
uses: actions-rs/toolchain@v1 | |
with: | |
profile: minimal | |
toolchain: ${{ matrix.rust }} | |
override: true | |
components: rustfmt, clippy | |
- name: Rust fmt check | |
uses: actions-rs/cargo@v1 | |
with: | |
command: fmt | |
args: --check --manifest-path attestation-agent/coco_keyprovider/Cargo.toml | |
- name: Rust clippy check | |
uses: actions-rs/cargo@v1 | |
with: | |
command: clippy | |
args: --manifest-path attestation-agent/coco_keyprovider/Cargo.toml -- -D warnings | |
- name: Build and install | |
uses: actions-rs/cargo@v1 | |
with: | |
command: build | |
args: --manifest-path attestation-agent/coco_keyprovider/Cargo.toml | |
- name: Run cargo test | |
uses: actions-rs/cargo@v1 | |
with: | |
command: test | |
args: --manifest-path attestation-agent/coco_keyprovider/Cargo.toml |