mirror of
https://github.com/figsoda/mmtc
synced 2024-11-27 01:10:18 +00:00
ff29b7b1a3
Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.5 to 2.4.0. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2.3.5...v2.4.0) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
46 lines
1.2 KiB
YAML
46 lines
1.2 KiB
YAML
name: ci
|
|
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
name: build
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
include:
|
|
- target: x86_64-apple-darwin
|
|
os: macos-latest
|
|
- target: x86_64-pc-windows-gnu
|
|
os: windows-latest
|
|
- target: x86_64-pc-windows-msvc
|
|
os: windows-latest
|
|
- target: x86_64-unknown-linux-gnu
|
|
os: ubuntu-latest
|
|
- target: x86_64-unknown-linux-musl
|
|
os: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2.4.0
|
|
|
|
- name: Cargo build
|
|
run: |
|
|
rustup toolchain install stable --profile minimal -t ${{ matrix.target }}
|
|
cargo +stable build --target ${{ matrix.target }}
|
|
env:
|
|
GEN_COMPLETIONS: 1
|
|
|
|
clippy-rustfmt:
|
|
name: clippy-rustfmt
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v2.4.0
|
|
|
|
- name: "Cargo: clippy, fmt"
|
|
run: |
|
|
rustup toolchain install stable --profile minimal -c clippy
|
|
rustup toolchain install nightly --profile minimal -c rustfmt
|
|
cargo +stable clippy -- -D warnings
|
|
cargo +nightly fmt -- --check
|