Skip to content

Commit

Permalink
Create ci.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Zac8668 authored Dec 30, 2023
1 parent c678948 commit 2eecec6
Showing 1 changed file with 99 additions and 0 deletions.
99 changes: 99 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
name: 🔁 Continuous Integration

on:
push:
branches:
- main
pull_request:
merge_group:

jobs:
check_formatting:
runs-on: ubuntu-latest
name: 🗒 Check Rust formatting
steps:
- name: ⬇️ Checkout Source
uses: actions/checkout@v3

- name: 🦀 Install Rustfmt
uses: actions-rs/toolchain@v1
with:
components: rustfmt

- name: 🔧 Check
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check

clippy_correctness_checks:
runs-on: ubuntu-latest
name: 🔧 Clippy correctness checks
strategy:
fail-fast: false
matrix:
config:
- { target: "x86_64-unknown-linux-gnu", target_dir: "target" }
- { target: "wasm32-unknown-unknown", target_dir: "web-target" }
steps:
- name: ⬇️ Checkout Source
uses: actions/checkout@v3

- name: 🧰 Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y -q \
libasound2-dev \
libudev-dev
- name: 🧰 Install WASM Target
if: matrix.config.target == 'wasm32-unknown-unknown'
uses: actions-rs/toolchain@v1
with:
target: ${{ matrix.config.target }}
components: clippy

- name: 🧰 Install Clippy
if: matrix.config.target != 'wasm32-unknown-unknown'
uses: actions-rs/toolchain@v1
with:
components: clippy

- name: ♻️ Cache Cargo
uses: actions/cache@v3
with:
path: |
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
web-target/
key: ci-${{ matrix.config.target }}-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
ci-${{ matrix.config.target }}-
- name: 🔧 Check
uses: actions-rs/cargo@v1
env:
CARGO_TARGET_DIR: ${{ matrix.config.target_dir }}
with:
command: clippy
args: --target ${{ matrix.config.target }} --locked -- -W clippy::correctness -D warnings

cargo-deny:
name: ©️ License and advisories check
runs-on: ubuntu-latest
strategy:
matrix:
checks:
- advisories
- bans licenses sources

# Prevent sudden announcement of a new advisory from failing ci:
continue-on-error: ${{ matrix.checks == 'advisories' }}

steps:
- uses: actions/checkout@v3
- uses: EmbarkStudios/cargo-deny-action@v1
with:
command: check ${{ matrix.checks }}

0 comments on commit 2eecec6

Please sign in to comment.