Skip to content

feat: Initial implementation for OIDC with machines #97

feat: Initial implementation for OIDC with machines

feat: Initial implementation for OIDC with machines #97

Workflow file for this run

name: Cargo Build & Test
on:
pull_request:
push:
branches:
- master
- main
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: Rust project - latest
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
- beta
steps:
- uses: actions/checkout@v3
- run: sudo apt install -y protobuf-compiler
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- run: rustup component add clippy
- run: cargo check --verbose
- run: cargo clippy -- -D warnings
- run: cargo build --verbose
- run: cargo test --verbose