Skip to content

Fixed issue

Fixed issue #14

Workflow file for this run

name: Testing/Linting
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run Tests
run: cargo test
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Run Clippy
run: cargo clippy
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Add musl target
run: rustup target add x86_64-unknown-linux-musl
- name: Build
run: cargo build --target x86_64-unknown-linux-musl