Skip to content

Merge pull request #246 from figsoda/dependabot/cargo/serde-1.0.162 #1141

Merge pull request #246 from figsoda/dependabot/cargo/serde-1.0.162

Merge pull request #246 from figsoda/dependabot/cargo/serde-1.0.162 #1141

Workflow file for this run

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@v3
- name: Install dependencies (musl)
if: contains(matrix.target, 'musl')
run: |
sudo apt update
sudo apt install musl-tools
- name: Cargo build
run: |
rustup toolchain install stable --profile minimal -t ${{ matrix.target }}
cargo +stable build --target ${{ matrix.target }}
env:
GEN_ARTIFACTS: artifacts
clippy-rustfmt:
name: clippy-rustfmt
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- 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