Docs install.md rebase #27
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: Building, Testing and Formatting on Linux | |
on: | |
push: | |
branches: [main] | |
paths-ignore: ["docs/**", "README.md"] | |
pull_request: | |
branches: [main] | |
paths-ignore: ["docs/**", "README.md"] | |
jobs: | |
test_all: | |
name: Test | |
runs-on: ubuntu-latest | |
strategy: | |
max-parallel: 1 | |
matrix: | |
args: ["--no-default-features --features trace,websocket,sqlite"] | |
env: | |
FREENET_LOG: error | |
CARGO_TARGET_DIR: ${{ github.workspace }}/target | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- name: Build | |
run: bash ./build-all.sh | |
- name: Test - features | |
run: cargo test --workspace ${{ matrix.args }} | |
clippy_check: | |
name: Clippy | |
runs-on: ubuntu-latest | |
env: | |
FREENET_LOG: error | |
CARGO_TARGET_DIR: ${{ github.workspace }}/target | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
components: clippy | |
- uses: Swatinem/rust-cache@v2 | |
- name: clippy | |
run: cargo clippy -- -D warnings | |
fmt_check: | |
name: Fmt | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: true | |
- uses: dtolnay/rust-toolchain@stable | |
with: | |
toolchain: stable | |
- name: Check code formatting | |
run: cargo fmt -- --check |