fix: test runs on push to next and uses next branch
All checks were successful
/ test (push) Successful in 5s
All checks were successful
/ test (push) Successful in 5s
This commit is contained in:
parent
2c02c6fdaf
commit
5b0798277d
1 changed files with 10 additions and 7 deletions
|
@ -1,4 +1,7 @@
|
|||
on: [push]
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- next
|
||||
jobs:
|
||||
test:
|
||||
runs-on: docker
|
||||
|
@ -6,16 +9,16 @@ jobs:
|
|||
- uses: actions/checkout@v4
|
||||
|
||||
- name: Test
|
||||
uses: https://git.kemitix.net/kemitix/rust@v1.80.0
|
||||
uses: https://git.kemitix.net/kemitix/rust@next
|
||||
with:
|
||||
args: test
|
||||
args: cargo test
|
||||
|
||||
- name: Build
|
||||
uses: https://git.kemitix.net/kemitix/rust@v1.80.0
|
||||
uses: https://git.kemitix.net/kemitix/rust@next
|
||||
with:
|
||||
args: build
|
||||
args: cargo build
|
||||
|
||||
- name: Run
|
||||
uses: https://git.kemitix.net/kemitix/rust@v1.80.0
|
||||
uses: https://git.kemitix.net/kemitix/rust@next
|
||||
with:
|
||||
args: run
|
||||
args: cargo run
|
||||
|
|
Loading…
Reference in a new issue