Skip to content

Commit

Permalink
Update CI configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
Shatur committed Jul 21, 2023
1 parent afd8cdb commit a8ebe43
Showing 1 changed file with 31 additions and 40 deletions.
71 changes: 31 additions & 40 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,76 +1,67 @@
name: Main
on:
push:
branches-ignore:
- 'releases/**'
- 'dependabot/**'
branches:
- master
paths-ignore:
- '**.md'
- '.gitignore'
- '.github/dependabot.yml'
- ".gitignore"
- ".github/dependabot.yml"
pull_request:
paths-ignore:
- '**.md'
- '.gitignore'
- '.github/dependabot.yml'
- ".gitignore"
- ".github/dependabot.yml"
env:
CARGO_TERM_COLOR: always
jobs:
test:
name: Test
format:
name: Format
runs-on: ubuntu-latest
steps:
- name: Clone repo
uses: actions/checkout@v3

- uses: dtolnay/rust-toolchain@stable

- name: Cache crates
uses: Swatinem/rust-cache@v2

- name: Install alsa and udev
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
- name: Install Taplo
run: cargo install taplo-cli

- name: Test
uses: actions-rs/cargo@v1
with:
command: test
- name: Format
run: |
cargo fmt --check
taplo fmt --check
clippy:
name: Clippy
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Clone repo
uses: actions/checkout@v3

- uses: dtolnay/rust-toolchain@stable
- name: Instal stable toolchain
uses: dtolnay/rust-toolchain@stable

- name: Cache crates
uses: Swatinem/rust-cache@v2

- name: Install alsa and udev
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev

- name: Clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --no-deps --all-features -- -D warnings
run: cargo clippy --no-deps --all-features --tests --examples -- -D warnings

format:
name: Format
- name: Rustdoc
run: cargo rustdoc -- -D warnings

test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Clone repo
uses: actions/checkout@v3

- uses: dtolnay/rust-toolchain@stable

- name: Install alsa and udev
run: sudo apt-get update; sudo apt-get install --no-install-recommends libasound2-dev libudev-dev
- name: Instal stable toolchain
uses: dtolnay/rust-toolchain@stable

- name: Format
uses: actions-rs/cargo@v1
with:
command: fmt
args: -- --check
- name: Cache crates
uses: Swatinem/rust-cache@v2

- name: Test
run: cargo test

0 comments on commit a8ebe43

Please sign in to comment.