Skip to content

feat(bottlecap): clean Rust CI file #5

feat(bottlecap): clean Rust CI file

feat(bottlecap): clean Rust CI file #5

Workflow file for this run

name: bottlecap
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: cargo test
runs-on: ubuntu-latest
defaults:
run:
working-directory: bottlecap
steps:
- uses: actions/checkout@v3
- name: Run Tests
run: cargo test --verbose
format:
name: cargo fmt
runs-on: ubuntu-latest
defaults:
run:
working-directory: bottlecap
steps:
- uses: actions/checkout@v3
- name: Format
run: cargo fmt --verbose
clippy:
name: cargo clippy
runs-on: ubuntu-latest
defaults:
run:
working-directory: bottlecap
steps:
- uses: actions/checkout@v3
- name: Format
run: cargo clippy --verbose