Skip to content

rename workflow folder to workflows #1

rename workflow folder to workflows

rename workflow folder to workflows #1

Workflow file for this run

name: Rust
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
toolchain:
- stable
steps:
- uses: actions/checkout@v4
- run: rustup update ${{ matrix.toolchain }} && rustup default ${{ matrix.toolchain }}
- name: Check
run: cargo clippy --no-deps
- name: Build
run: cargo build --verbose --release
- name: Test
run: cargo test --verbose