This repository has been archived by the owner on Sep 12, 2024. It is now read-only.
chore(deps): bump const_format from 0.2.31 to 0.2.32 #121
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: [main, dev] | |
pull_request: | |
branches: [main, dev] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
check: | |
strategy: | |
matrix: | |
include: | |
- os: "ubuntu-latest" | |
target: "x86_64-unknown-linux-gnu" | |
- os: "windows-latest" | |
target: "x86_64-pc-windows-msvc" | |
- os: "macos-latest" | |
target: "x86_64-apple-darwin" | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Rustup | |
run: | | |
rustup update | |
rustup target list | |
rustup component add clippy | |
- uses: Swatinem/rust-cache@v2 | |
- name: Cargo Clippy | |
run: cargo clippy --all-targets --all-features -- -D warnings | |
- name: Run tests | |
run: cargo test -v --all-features | |
- name: Build | |
run: cargo build -v | |
- name: List target | |
run: ls -l target/debug | |
- name: Upload build artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: ${{ matrix.target }} | |
path: | | |
target/debug/*yxy* |