Merge pull request #12 from HideyoshiSolutions/add-test-build
Adds Github Action for Build Testing
This commit is contained in:
17
.github/workflows/test-build.yml
vendored
Normal file
17
.github/workflows/test-build.yml
vendored
Normal file
@@ -0,0 +1,17 @@
|
|||||||
|
name: Rust
|
||||||
|
|
||||||
|
on:
|
||||||
|
push
|
||||||
|
|
||||||
|
env:
|
||||||
|
CARGO_TERM_COLOR: always
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v3
|
||||||
|
- name: Build
|
||||||
|
run: cargo build --verbose
|
||||||
Reference in New Issue
Block a user