2021-11-16 00:09:27 -06:00
|
|
|
name: Build
|
|
|
|
|
|
|
|
on:
|
|
|
|
- push
|
|
|
|
- pull_request
|
|
|
|
|
|
|
|
env:
|
|
|
|
CARGO_TERM_COLOR: always
|
2021-11-23 05:53:06 -06:00
|
|
|
|
2021-11-16 00:09:27 -06:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
2021-11-23 05:53:06 -06:00
|
|
|
|
2021-11-16 00:09:27 -06:00
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions-rs/toolchain@v1
|
|
|
|
with:
|
|
|
|
components: rust-src
|
|
|
|
- uses: actions-rs/cargo@v1
|
|
|
|
with:
|
2021-11-23 05:53:06 -06:00
|
|
|
command: repbuild
|
|
|
|
args: run
|