Skip to content

Commit d03c22e

Browse files
committed
TEST: add CI workflows
1 parent a88edd0 commit d03c22e

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

.github/workflows/ci_workflows.yml

+29
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
tags:
8+
- '*'
9+
pull_request:
10+
11+
concurrency:
12+
group: ${{ github.workflow }}-${{ github.ref }}
13+
cancel-in-progress: true
14+
15+
jobs:
16+
tests:
17+
uses: OpenAstronomy/github-actions-workflows/.github/workflows/tox.yml@v1
18+
with:
19+
envs: |
20+
- name: Code style checks
21+
linux: codestyle
22+
23+
- name: Code tests with supported array API classes
24+
linux: test-alldeps
25+
26+
# Docs are build directly on readthedocs even for PR.
27+
# - name: Documentation build
28+
# os: ubuntu-latest
29+
# toxenv: build_docs

0 commit comments

Comments
 (0)