Cross-Compilation #313
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: Tests & Lints | |
on: | |
push: | |
branches: [ main, feature ] | |
pull_request: | |
branches: [ main, feature ] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build: | |
name: Build project | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Build unimarkup for Linux | |
run: cargo build | |
- name: Build unimarkup for Windows | |
run: | | |
sudo apt-get -y install gcc-mingw-w64-x86-64 | |
rustup target add x86_64-pc-windows-gnu | |
cargo build --target x86_64-pc-windows-gnu | |
format: | |
name: Check Formatting | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run cargo fmt | |
run: cargo fmt -- --check | |
lint: | |
name: Run Linter (clippy) | |
runs-on: ubuntu-latest | |
needs: format | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run linter | |
run: cargo clippy -- -D warnings | |
test: | |
name: Run Tests | |
runs-on: ubuntu-latest | |
needs: lint | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Run tests | |
run: cargo test --verbose |