Skip to content

Remove bors.toml

Remove bors.toml #56

Workflow file for this run

on:
push:
branches-ignore:
- '*.tmp'
pull_request:
workflow_dispatch:
name: CI
env:
RUST_BACKTRACE: 1
jobs:
check:
name: cargo check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions-rs/cargo@v1
with:
command: check
args: --all-features
fmt:
name: cargo fmt
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions-rs/cargo@v1
with:
command: fmt
args: --all --check
test:
name: cargo test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
lfs: 'true'
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions-rs/cargo@v1
with:
command: test
clippy:
name: cargo clippy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: stable
- uses: actions-rs/cargo@v1
with:
command: clippy
args: --all-targets -- -D warnings
# Job to key the bors success status against
bors:
name: bors
if: success()
needs:
- check
- fmt
- test
- clippy
runs-on: ubuntu-latest
steps:
- name: Mark the job as a success
run: exit 0