Skip to content

fixup! fixup! Added basic build github action #9

fixup! fixup! Added basic build github action

fixup! fixup! Added basic build github action #9

Workflow file for this run

---
name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Install latest rust toolchain
uses: actions-rs/[email protected]
with:
toolchain: stable
default: true
override: true
- name: Build
run: cargo build --all