Skip to content

Use the correct link.exe flag for preserving the specified symbol even if it is unused #216

Use the correct link.exe flag for preserving the specified symbol even if it is unused

Use the correct link.exe flag for preserving the specified symbol even if it is unused #216

Workflow file for this run

name: Check
on:
pull_request: {}
push:
branches: master
jobs:
check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
override: true
- name: Run cargo check
run: cargo check --locked
- name: Run cargo clippy
run: cargo clippy -- -D warnings
- name: Check format
run: cargo fmt -- --check