-
Notifications
You must be signed in to change notification settings - Fork 1
49 lines (42 loc) · 979 Bytes
/
ci.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
on:
push:
branches:
- '*'
- '**/*'
tags:
- '*'
pull_request:
branches:
- '*'
- '**/*'
name: Test Action
jobs:
testing:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [ "3.8", "3.9", "3.10", "3.11" ]
os: [ "ubuntu-latest" ]
name: CI
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup PDM
uses: pdm-project/setup-pdm@v3
with:
python-version: ${{ matrix.python-version }}
cache: true
- name: Install dependencies
run: pdm install -v && pdm info
- name: Lint
run: make lint
- name: Test
run: make test
- name: Publish on git tags
run: make publish
if: |
startsWith(github.ref, 'refs/tags/') &&
matrix.python-version == '3.8'
env:
PYPI_UNAME: __token__
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}