Workflow test branch (#53)

* Create rust.yml

* Update rust.yml
This commit is contained in:
kmanc
2022-08-17 17:17:50 -04:00
committed by GitHub
parent 9561a8c007
commit 5043b107e9
+30
View File
@@ -0,0 +1,30 @@
name: Rust Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
env:
CARGO_TERM_COLOR: always
jobs:
build-lin:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
build-win:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose