Skip to content

Bump clap from 2.33.3 to 4.4.3 in /pagebreak #51

Bump clap from 2.33.3 to 4.4.3 in /pagebreak

Bump clap from 2.33.3 to 4.4.3 in /pagebreak #51

Workflow file for this run

name: Test
on:
push:
branches: [main]
pull_request:
branches: [main]
env:
CARGO_TERM_COLOR: always
HUMANE_VERSION: "0.6.0"
jobs:
test:
name: Test
runs-on: ${{matrix.os}}
defaults:
run:
shell: bash
strategy:
matrix:
include:
- build: linux
os: ubuntu-latest
rust: beta
target: x86_64-unknown-linux-musl
cross: false
- build: macos
os: macos-latest
rust: beta
target: x86_64-apple-darwin
cross: false
- build: windows
os: windows-latest
rust: beta
target: x86_64-pc-windows-msvc
cross: false
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
fetch-depth: 1
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.rust }}
target: ${{ matrix.target }}
override: true
default: true
components: rustfmt, clippy
- uses: Swatinem/rust-cache@v2
- uses: actions/setup-node@v3
with:
node-version: 16
- name: Install humane
uses: supplypike/setup-bin@v1
with:
uri: "https://github.com/CloudCannon/humane/releases/download/v${{env.HUMANE_VERSION}}/humane-v${{env.HUMANE_VERSION}}-${{matrix.target}}.tar.gz"
name: "humane"
version: ${{env.HUMANE_VERSION}}
- name: Build Testing Binary
working-directory: ./pagebreak
run: cargo build --release
- name: Test Lib
working-directory: ./pagebreak
run: cargo test --release --lib