-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (32 loc) · 918 Bytes
/
packaging.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
name: "Packaging."
on: [pull_request]
jobs:
packaging:
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.12"]
os: [ubuntu-latest]
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install tox
- name: Create temporary version tag
run: |
if [ -z "$(git tag)" ]; then
git config user.name "GitHub Actions"
git config user.email "actions@github.com"
git tag -a v0.0.0 -m "temporary tag"
fi
- name: Run packaging test
run: |
tox -e packaging