Skip to content

ci: add macos & windows runners for testing #1102

ci: add macos & windows runners for testing

ci: add macos & windows runners for testing #1102

Workflow file for this run

name: Continuous Integration
on:
pull_request:
merge_group:
push:
branches: [ main ]
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
msrv:
name: Build with MSRV
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- name: Get current MSRV from Cargo.toml
id: current_msrv
run: |
msrv=$(cat Cargo.toml | grep rust-version | sed 's/.* = "//; s/"//')
echo "msrv=$msrv" >> $GITHUB_OUTPUT
- name: Setup Rust version
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{steps.current_msrv.outputs.msrv}}
- uses: Swatinem/[email protected]
- uses: taiki-e/install-action@v2
with:
tool: cargo-hack
- name: Build
run: cargo hack build --each-feature --keep-going
test:
strategy:
fail-fast: false
matrix:
toolchain:
- stable
- nightly
os:
- name: Ubuntu
version: ubuntu-latest
- name: Windows
version: windows-latest
- name: MacOS
version: macos-latest
name: Test - ${{ matrix.os.name }} (${{ matrix.toolchain }})
runs-on: ${{ matrix.os.version }}
steps:
- name: Checkout sources
uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- name: Setup Rust - ${{ matrix.toolchain }}
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
# - name: Enable Docker Remote API on Localhost
# shell: bash
# run: |
# sudo mkdir -p /etc/systemd/system/docker.service.d/
# sudo cp ./.github/docker.override.conf /etc/systemd/system/docker.service.d/override.conf
# sudo systemctl daemon-reload
# sudo systemctl restart docker
- name: Generate Cargo.lock for cache
uses: actions-rs/cargo@v1
with:
command: generate-lockfile
- name: Cache cargo dirs and target
uses: actions/cache@v4
with:
path:
~/.cargo/registry
~/.cargo/git
~/.cargo/bin
target
key: ${{ matrix.os.version }}-${{ matrix.toolchain }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Build
uses: actions-rs/cargo@v1
with:
command: build
- uses: taiki-e/install-action@v2
with:
tool: cargo-hack
- name: Tests
run: cargo hack test --each-feature --clean-per-run
- name: Clear the cargo caches
run: |
cargo install cargo-cache --no-default-features --features ci-autoclean
cargo-cache
fmt:
name: Rustfmt check
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly
components: rustfmt
override: true
- name: Rustfmt check
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
clippy:
name: Clippy check
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
toolchain:
- stable
- nightly
steps:
- name: Checkout sources
uses: actions/checkout@v4
- uses: Swatinem/rust-cache@v2
- name: Setup Rust
uses: dtolnay/rust-toolchain@master
with:
toolchain: ${{ matrix.toolchain }}
components: clippy
- name: Clippy check
uses: actions-rs/clippy-check@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
args: --all-features
prlint:
name: PR name check
runs-on: ubuntu-latest
if: github.event_name == 'pull_request'
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: CondeNast/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
# For PRs we gonna use squash-strategy, so commits names not so matter
ignoreCommits: "true"