Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
Llywelwyn
e7e58ff9e3
cargo build, cargo test 2023-08-24 00:27:52 +01:00

22
.github/workflows/rust-cargo.yml vendored Normal file
View file

@ -0,0 +1,22 @@
name: Rust
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
CARGO_TERM_COLOR: always
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose