[20/11/23] Splitting workflow files by language
This commit is contained in:
parent
8d9ab1a4bd
commit
6b2d7c9fc0
@ -1,4 +1,4 @@
|
||||
name: tests
|
||||
name: Python
|
||||
|
||||
on:
|
||||
push:
|
||||
@ -7,11 +7,8 @@ on:
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
env:
|
||||
CARGO_TERM_COLOR: always
|
||||
|
||||
jobs:
|
||||
python:
|
||||
build:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
@ -36,14 +33,3 @@ jobs:
|
||||
- name: Test with pytest
|
||||
run: |
|
||||
pytest -v tests
|
||||
|
||||
rust:
|
||||
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
- name: Build
|
||||
run: cargo build --verbose
|
||||
- name: Run tests
|
||||
run: cargo test --verbose
|
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…
x
Reference in New Issue
Block a user