Skip to content

Commit d54cbf8

Browse files
committed
Adding manual test for release
1 parent 950cd16 commit d54cbf8

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Manual Release
2+
3+
on:
4+
workflow_dispatch
5+
6+
jobs:
7+
analysis:
8+
timeout-minutes: 30
9+
strategy:
10+
matrix:
11+
python-version: ['3.9', '3.12'] # TODO: Add 3.13 when it is released
12+
os: [ubuntu-latest, macos-latest, macos-13, windows-latest]
13+
runs-on: ${{ matrix.os }}
14+
steps:
15+
- uses: actions/checkout@v3
16+
- name: Set up Python
17+
uses: actions/setup-python@v4
18+
with:
19+
python-version: ${{ matrix.python-version }}
20+
- name: Update
21+
run: pip install --upgrade --upgrade-strategy eager -e '.[datadriven, tests]'
22+
- name: Run tests
23+
run: python -m tests
24+
- name: Upload coverage to Codecov
25+
uses: codecov/codecov-action@v3
26+
with:
27+
file: ./coverage.xml

0 commit comments

Comments
 (0)