-
Notifications
You must be signed in to change notification settings - Fork 1
115 lines (111 loc) · 3.02 KB
/
test.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
name: Run pytest tests
on:
push:
branches:
- main
tags:
- 'v[0-9]+\.[0-9]+\.[0-9]+\.dev[0-9]+'
- 'v[0-9]+\.[0-9]+\.[0-9]+'
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
pull-requests: read
checks: write
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
test_environment: [testpy311np1pd21, testpy311np1pd22, testpy311np1pd-latest, testpy311np2pd22, testpy311np2pd-latest, testpy312np1pd21, testpy312np1pd22, testpy312np1pd-latest, testpy312np2pd22, testpy312np2pd-latest]
steps:
- uses: actions/checkout@v4
with:
lfs: false
- uses: prefix-dev/[email protected]
with:
pixi-version: latest
cache: true
locked: false
frozen: false
environments: ${{ matrix.test_environment }}
- run: pixi run -e ${{ matrix.test_environment }} test
- name: Coveralls
uses: coverallsapp/github-action@v2
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: prefix-dev/[email protected]
with:
pixi-version: latest
cache: true
locked: false
frozen: false
- run: pixi run lint_ci
type_check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: prefix-dev/[email protected]
with:
pixi-version: latest
cache: true
locked: false
frozen: false
- run: pixi run -e mne check_types
build:
runs-on: ubuntu-latest
if: ${{ github.ref_type == 'tag' }}
needs: [test, lint, type_check]
steps:
- uses: actions/checkout@v4
- uses: prefix-dev/[email protected]
with:
pixi-version: latest
cache: true
locked: false
frozen: false
- run: pixi run hatch build
- uses: actions/upload-artifact@v4
with:
name: pyrasa_dist
path: dist/
publish_to_testpypi:
runs-on: ubuntu-latest
if: ${{ contains(github.ref, 'dev') }}
needs: [build]
environment:
name: testpypi
url: https://test.pypi.org/p/pyrasa
permissions:
id-token: write
steps:
- name: Download all the dists
uses: actions/download-artifact@v4
with:
name: pyrasa_dist
path: dist/
- name: Publish distribution 📦 to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
repository-url: https://test.pypi.org/legacy/
publish_to_pypi:
runs-on: ubuntu-latest
if: ${{ !contains(github.ref, 'dev') }}
needs: [build]
environment:
name: pypi
url: https://pypi.org/p/pyrasa
permissions:
id-token: write
steps:
- name: Download all the dists
uses: actions/download-artifact@v4
with:
name: pyrasa_dist
path: dist/
- name: Publish distribution 📦 to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1