-
Notifications
You must be signed in to change notification settings - Fork 23
51 lines (47 loc) · 1.09 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
name: test
on:
workflow_dispatch:
push:
branches:
- '*'
paths-ignore:
- '**.md'
pull_request:
paths-ignore:
- '**.md'
permissions:
contents: read
pull-requests: read
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ['3.10', '3.11']
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
- run: |
python -m pip install -U pip
python -m pip install --use-pep517 '.[dev]'
- run: make test
- uses: actions/upload-pages-artifact@v1
if: github.ref_name == 'main' && matrix.python-version == '3.11'
with:
path: htmlcov
# deploy:
# if: github.ref_name == 'main'
# needs: test
# permissions:
# pages: write
# id-token: write
# environment:
# name: github-pages
# url: ${{ steps.deployment.outputs.page_url }}
# runs-on: ubuntu-latest
# steps:
# - id: deployment
# uses: actions/deploy-pages@v2