Skip to content

Commit

Permalink
remove cirrus ci. Add macOs and ubuntu to github-actions
Browse files Browse the repository at this point in the history
  • Loading branch information
bcharlier committed Oct 30, 2024
1 parent dfa60e2 commit ad128fc
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 36 deletions.
20 changes: 0 additions & 20 deletions .cirrus.yml

This file was deleted.

15 changes: 0 additions & 15 deletions .github/workflows/cuda_test.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/black.yml → .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: Lint

on: [push, pull_request]
on: [pull_request]

jobs:
lint:
Expand Down
36 changes: 36 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# Launch test on various platforms
name: Test

on:
pull_request_target:
types: [opened, synchronize, reopened, closed]
branches: ['main']
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

0 comments on commit ad128fc

Please sign in to comment.