-
Notifications
You must be signed in to change notification settings - Fork 0
77 lines (74 loc) · 1.99 KB
/
cicd.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
name: Continuous Integration and Deployment
on:
push:
branches:
- main
pull_request:
branches:
- main
release:
types: [created]
workflow_dispatch:
jobs:
test:
strategy:
fail-fast: true
matrix:
os: ["ubuntu-latest", "macos-latest", "windows-latest"]
python-version: ["3.9", "3.10", "3.11", "3.12"]
defaults:
run:
shell: bash
runs-on: ${{ matrix.os }}
steps:
# Checkout repo
- name: Checkout
uses: actions/checkout@v3
# Install rye with cache
- name: Install the latest version of rye
uses: eifinger/setup-rye@v4
with:
enable-cache: true
# Sync dependencies
- name: Sync dependencies
run: rye sync
# Run tests
- name: Run tests
run: rye test
# Code coverage to codecov.io
- name: Upload results to Codecov
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: tests/coverage.xml
fail_ci_if_error: false
verbose: true
# Publishes to PyPi if tests are passed and release is created
publish:
if: github.event_name == 'release' && github.event.action == 'created'
needs: test
name: Upload release to PyPI
runs-on: ubuntu-latest
environment:
name: pypi
url: https://pypi.org/project/isp-workbook-parser/
permissions:
id-token: write # IMPORTANT: this permission is mandatory for trusted publishing
steps:
# Checkout repo
- name: Checkout
uses: actions/checkout@v3
# Install rye with cache
- name: Install the latest version of rye
uses: eifinger/setup-rye@v4
with:
enable-cache: true
# Sync dependencies
- name: Sync dependencies
run: rye sync
# Build
- name: Build
run: rye build
# Publish to PyPI
- name: Publish package distributions to PyPI
uses: pypa/gh-action-pypi-publish@release/v1