Skip to content

fix: symlink issues

fix: symlink issues #9

Workflow file for this run

name: linux
on: [push, pull_request]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
override: true
components: rustfmt, clippy
- name: Format
run: cargo fmt --all -- --check
- name: Clippy
run: cargo clippy -- -Dwarnings
- name: Run tests
run: cargo test --no-fail-fast
env:
RUST_LOG: trace