ci: 👷 auto release
This commit is contained in:
parent
17977d4ee2
commit
ff4cf381fa
3 changed files with 166 additions and 0 deletions
22
.github/workflows/dev.yml
vendored
Normal file
22
.github/workflows/dev.yml
vendored
Normal file
|
@ -0,0 +1,22 @@
|
|||
name: Rust Dev Branch -> Build & Test
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ "dev" ]
|
||||
pull_request:
|
||||
branches: [ "dev" ]
|
||||
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
|
||||
jobs:
|
||||
build_linux:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Build
|
||||
run: cargo build --release --verbose
|
||||
- name: Run tests
|
||||
run: cargo test --verbose
|
Loading…
Add table
Add a link
Reference in a new issue