Skip to content

Commit

Permalink
TEST: add CI workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
mhvk committed Nov 18, 2024
1 parent 8ba12ae commit 406df6c
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/ci_workflows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: CI

on:
push:
branches:
- main
tags:
- '*'
pull_request:

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
tests:
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1
with:
envs: |
- name: Code style checks
linux: codestyle
- name: Code tests with supported array API classes
linux: test-alldeps
# Docs are build directly on readthedocs even for PR.
# - name: Documentation build
# os: ubuntu-latest
# toxenv: build_docs

0 comments on commit 406df6c

Please sign in to comment.