Add conclusion, completed_at and output fields to create check api #1146
Workflow file for this run
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: Rust | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ${{ matrix.os }}-latest | |
strategy: | |
matrix: | |
channel: [stable, beta, nightly] | |
os: [ubuntu, macos, windows] | |
steps: | |
- uses: actions/checkout@v2 | |
- run: rustup default ${{ matrix.channel }} | |
- run: cargo build --verbose --all-targets | |
- run: cargo test | |
clippy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- run: cargo fmt --all -- --check | |
- run: cargo clippy --tests --examples |