Skip to content

Merge pull request #109 from bheesham/quick-url-update-for-fossil #136

Merge pull request #109 from bheesham/quick-url-update-for-fossil

Merge pull request #109 from bheesham/quick-url-update-for-fossil #136

Workflow file for this run

name: Rust
on:
push:
branches:
pull_request:
branches:
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: cargo fmt
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy --all --all-features -- -D warnings
- name: Build
run: cargo build --all --all-features --verbose
- name: Run tests
run: cargo test --all --all-features