Skip to content

harm: Applying relocations #151

harm: Applying relocations

harm: Applying relocations #151

Workflow file for this run

name: Rust
on:
pull_request:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Run fmt
run: cargo fmt -- --check
- name: Run clippy
run: cargo clippy
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test