Skip to content

chore: fix the version of heimdall as the version has been updated an… #14

chore: fix the version of heimdall as the version has been updated an…

chore: fix the version of heimdall as the version has been updated an… #14

Workflow file for this run

name: Test
on:
push:
pull_request:
env:
CARGO_TERM_COLOR: always
jobs:
build:
name: Tests for ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: ubuntu-latest
- os: windows-latest
- os: macos-latest
steps:
- uses: actions/checkout@v2
- name: Run unit tests
working-directory: .
run: cargo test --all-features --verbose
- name: Build Binaries
working-directory: .
run: cargo build --release --verbose