tar2arx and zip2arx also generate man page. #72
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: Cargo Build & Test | |
on: | |
push: | |
pull_request: | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build_and_test: | |
name: Rust project - latest | |
strategy: | |
fail-fast: false | |
matrix: | |
toolchain: | |
- stable | |
- beta | |
- nightly | |
os: | |
- ubuntu-latest | |
- macos-latest | |
- windows-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- name: Install dependencies | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
run: | | |
sudo apt-get install -y libfuse-dev | |
- name: Install dependencies | |
if: ${{ matrix.os == 'macos-latest'}} | |
run: | | |
brew install macfuse | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup rust toolchain ${{ matrix.toolchain }} | |
run: | | |
rustup update ${{ matrix.toolchain }} | |
rustup default ${{ matrix.toolchain }} | |
rustup component add rustfmt | |
- name: Check format | |
run: cargo fmt --check | |
- name: Test code | |
run: cargo test --verbose --features in_ci |