[20/11/23] Splitting workflow files by language

This commit is contained in:
Andrew Conlin 2023-11-20 10:56:27 +00:00
parent 8d9ab1a4bd
commit 6b2d7c9fc0
2 changed files with 25 additions and 16 deletions

View File

@ -1,4 +1,4 @@
name: tests name: Python
on: on:
push: push:
@ -7,11 +7,8 @@ on:
permissions: permissions:
contents: read contents: read
env:
CARGO_TERM_COLOR: always
jobs: jobs:
python: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
@ -36,14 +33,3 @@ jobs:
- name: Test with pytest - name: Test with pytest
run: | run: |
pytest -v tests 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
View 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