Skip to content

Initial Commit. RIP Tim May. #1

Initial Commit. RIP Tim May.

Initial Commit. RIP Tim May. #1

Workflow file for this run

name: Cargo Build & Test
on:
push:
branches:
- master
env:
CARGO_TERM_COLOR: always
jobs:
build_and_test:
name: timed_release_crypto
runs-on: ubuntu-latest
steps:
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: stable
- name: Checkout code
uses: actions/checkout@v2
- name: Build
run: cargo build --verbose
- name: Test
run: cargo test --verbose