[20/11/23] Splitting workflow files by language
This commit is contained in:
parent
8d9ab1a4bd
commit
6b2d7c9fc0
2 changed files with 25 additions and 16 deletions
23
.github/workflows/rust.yml
vendored
Normal file
23
.github/workflows/rust.yml
vendored
Normal file
|
@ -0,0 +1,23 @@
|
|||
name: Rust
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "dev" ]
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
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
|
Loading…
Add table
Add a link
Reference in a new issue