Skip to content

Merge pull request #2 from mkroman/mkroman/bump-deps #3

Merge pull request #2 from mkroman/mkroman/bump-deps

Merge pull request #2 from mkroman/mkroman/bump-deps #3

name: Continuous Integration
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
actions: read
contents: read
checks: write
jobs:
test:
name: Test
runs-on: ubuntu-latest
strategy:
matrix:
rust: [stable, nightly]
steps:
- name: Checkout source code
uses: actions/checkout@v3
with:
lfs: true
fetch-depth: 0
- name: Install ${{ matrix.rust }} toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.rust }}
- name: Cache Cargo
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-test-${{ matrix.rust }}-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-test-${{ matrix.rust }}-
- name: Run cargo test
run: cargo test
clippy:
name: Clippy
runs-on: ubuntu-latest
strategy:
matrix:
rust: [stable, nightly]
steps:
- name: Checkout source code
uses: actions/checkout@v3
with:
lfs: true
fetch-depth: 0
- name: Install ${{ matrix.rust }} toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: ${{ matrix.rust }}
components: clippy
- name: Cache Cargo
uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-clippy-${{ matrix.rust }}-${{ hashFiles('**/Cargo.lock') }}
restore-keys: |
${{ runner.os }}-cargo-clippy-${{ matrix.rust }}-
- name: Run clippy check
run: cargo clippy -- -D warnings