Skip to content
This repository has been archived by the owner on Sep 12, 2024. It is now read-only.

chore(deps): bump clap from 4.4.11 to 4.4.12 #145

chore(deps): bump clap from 4.4.11 to 4.4.12

chore(deps): bump clap from 4.4.11 to 4.4.12 #145

Workflow file for this run

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*