Skip to content

Commit

Permalink
separate workflows for OS test envs
Browse files Browse the repository at this point in the history
  • Loading branch information
lane-neuro committed Jul 22, 2024
1 parent 444deac commit f881528
Show file tree
Hide file tree
Showing 5 changed files with 45 additions and 37 deletions.
32 changes: 0 additions & 32 deletions .github/workflows/python-app.yml

This file was deleted.

14 changes: 14 additions & 0 deletions .github/workflows/test-macos-latest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: macOS [latest]

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]

jobs:
test:
uses: ./.github/workflows/reusable-test.yml
with:
os: macos-latest
venv-path: .venv
14 changes: 14 additions & 0 deletions .github/workflows/test-ubuntu-latest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Ubuntu [latest]

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]

jobs:
test:
uses: ./.github/workflows/reusable-test.yml
with:
os: ubuntu-latest
venv-path: .venv
14 changes: 14 additions & 0 deletions .github/workflows/test-windows-latest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: Windows [latest]

on:
push:
branches: ["main"]
pull_request:
branches: ["main"]

jobs:
test:
uses: ./.github/workflows/reusable-test.yml
with:
os: windows-latest
venv-path: .venv
8 changes: 3 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,9 @@
<p>Author: <a href="#contact">Lane</a></p>
</div>

![Ubuntu](https://github.com/lane-neuro/research-analytics-suite/actions/workflows/python-app.yml/badge.svg?branch=main&job=ubuntu-latest)

![macOS](https://github.com/lane-neuro/research-analytics-suite/actions/workflows/python-app.yml/badge.svg?branch=main&job=macos-latest)

![Windows](https://github.com/lane-neuro/research-analytics-suite/actions/workflows/python-app.yml/badge.svg?branch=main&job=windows-latest)
![Ubuntu](https://github.com/lane-neuro/research-analytics-suite/actions/workflows/test-ubuntu-latest.yml/badge.svg)
![macOS](https://github.com/lane-neuro/research-analytics-suite/actions/workflows/test-macos-latest.yml/badge.svg)
![Windows](https://github.com/lane-neuro/research-analytics-suite/actions/workflows/test-windows-latest.yml/badge.svg)


<div>
Expand Down

0 comments on commit f881528

Please sign in to comment.