Skip to content

ci: improved jobs

ci: improved jobs #1

Workflow file for this run

name: Test
on:
push:
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Install latest rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
default: true
override: true
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose