Skip to content

build(deps): Bump clap from 4.5.15 to 4.5.20 (#272) #573

build(deps): Bump clap from 4.5.15 to 4.5.20 (#272)

build(deps): Bump clap from 4.5.15 to 4.5.20 (#272) #573

Workflow file for this run

name: Pull Requests
on:
pull_request_target:
branches:
- master
push:
branches:
- master
jobs:
build:
strategy:
matrix:
os: [ ubuntu-20.04, windows-latest, macos-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Setup node 16 for self hosted
uses: actions/setup-node@v4
with:
node-version: 16
- name: Check out repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt
override: true
profile: minimal
- name: Rust Cache
uses: Swatinem/[email protected]
with:
cache-targets: "false"
- name: Check formatting
uses: actions-rs/cargo@v1
with:
command: fmt
args: --all -- --check
- name: Check compilation
uses: actions-rs/cargo@v1
with:
command: check
- name: Test
uses: actions-rs/cargo@v1
with:
command: test