Skip to content

remove cirrus ci. Add macOs and ubuntu to github-actions #1

remove cirrus ci. Add macOs and ubuntu to github-actions

remove cirrus ci. Add macOs and ubuntu to github-actions #1

Workflow file for this run

# Launch test on various platforms
name: Test
on: [pull_request, workflow_dispatch]
jobs:
test-self-hosted:
runs-on: self-hosted
steps:
- name: Clone Repository
uses: actions/checkout@v2
- name: Test with pytest
run: |
sh ./pytest.sh
test-ubuntu:
runs-on: ubuntu-latest
steps:
- name: Clone Repository
uses: actions/checkout@v2
- name: Test with pytest
run: |
sh ./pytest.sh
test-macos:
runs-on: macOS-latest
steps:
- name: Clone Repository
uses: actions/checkout@v2
- name: Test with pytest
run: |
sh ./pytest.sh