-
Notifications
You must be signed in to change notification settings - Fork 0
67 lines (52 loc) · 1.64 KB
/
test-workflow.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
name: Test PyPI Publish Workflow
on: push
jobs:
build_python_package:
name: Version Verified Package Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Test the verify-version-tag action
uses: ./verify-version-tag
with:
working_directory: ./test/dummy-package
tag: "0.1.0"
- name: Test the build-python-package action
id: packaging
uses: ./build-python-package
with:
working_directory: ./test/dummy-package
- name: Upload production artifacts
uses: actions/upload-artifact@v4
with:
path: ./test/dummy-package/dist
test_package:
name: Test Python Package
needs: build_python_package
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
steps:
- uses: actions/checkout@v4
- name: Download dist content
uses: actions/download-artifact@v4
- name: Display the artifacts
run: ls -R .
- name: Test the test-package action
uses: ./test-package
with:
working_directory: ./test/dummy-package
python_version: ${{ matrix.python-version }}
# publish_package:
# name: Test Publish Package
# needs: test_package
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v4
# - name: Test the publish-package action
# uses: ./publish_package
# with:
# test_pypi_api_token: ${{ secrets.TEST_PYPI_API_TOKEN }}
# pypi_api_token: ${{ secrets.PYPI_API_TOKEN }}
# package_dir: ./test/dummy-package/dist/