Skip to content
This repository has been archived by the owner on Dec 25, 2023. It is now read-only.

Update shuttle.yml #296

Update shuttle.yml

Update shuttle.yml #296

Workflow file for this run

name: Rust
on:
push:
branches: [ main ]
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: cargo build --verbose
# format:
# runs-on: ubuntu-latest
#
# steps:
# - uses: actions/checkout@v4
# - run: cargo fmt --all -- --check
#
# lint:
# runs-on: ubuntu-latest
#
# steps:
# - uses: actions/checkout@v4
# - uses: actions-rs/clippy-check@v1
# with:
# token: ${{ secrets.GITHUB_TOKEN }}
# args: --all-targets --all-features -- -D clippy::all -D warnings
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run tests
run: cargo test --all --verbose