Bump rustix from 0.37.23 to 0.37.25 in /cowbot #37
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: Code Standards | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
cowserve_standards: | |
name: "Cowserve Coding Standards" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- uses: arduino/setup-protoc@v2 | |
- name: Build Cowserve | |
working-directory: ./cowserve | |
run: cargo build --verbose | |
cowbot_standards: | |
name: "Cowbot Coding Standards" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- uses: arduino/setup-protoc@v2 | |
- name: Build Cowbot | |
working-directory: ./cowbot | |
run: cargo build --verbose | |
cowparse_standards: | |
name: "Cowparse Coding Standards" | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions-rust-lang/setup-rust-toolchain@v1 | |
- name: Build Cowparse | |
working-directory: ./cowparse | |
run: cargo build --verbose | |
- name: Test Cowparse | |
working-directory: ./cowparse | |
run: cargo test --all-features |