Skip to content

Commit 8e12801

Browse files
init
1 parent e7d0983 commit 8e12801

File tree

2 files changed

+19
-21
lines changed

2 files changed

+19
-21
lines changed

.github/workflows/deploy.yml

Lines changed: 13 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -8,20 +8,19 @@ jobs:
88
deploy:
99
runs-on: ubuntu-latest
1010
steps:
11-
- uses: actions/checkout@v2
12-
- name: Set up Python 3.8
13-
uses: actions/setup-python@v2
14-
with:
15-
python-version: 3.8
16-
- name: Install dependencies
17-
run: |
18-
python -m pip install --upgrade pip
19-
pip install setuptools wheel twine
20-
- name: Build and publish to PyPi
21-
env:
11+
- uses: actions/checkout@v5
12+
- uses: actions/setup-python@v6
13+
with:
14+
python-version: "3.13"
15+
- name: Install dependencies
16+
run: |
17+
python -m pip install --upgrade pip
18+
pip install setuptools wheel twine
19+
- name: Build and publish to PyPi
20+
env:
2221
TWINE_USERNAME: __token__
2322
TWINE_PASSWORD: ${{ secrets.TWINE_TOKEN }}
2423
TWINE_REPOSITORY: pypi
25-
run: |
26-
python setup.py sdist bdist_wheel
27-
python -m twine upload dist/*
24+
run: |
25+
python setup.py sdist bdist_wheel
26+
python -m twine upload dist/*

.github/workflows/develop.yml renamed to .github/workflows/pr.yml

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,19 @@
1-
name: Develop
1+
name: PR Validation
22

33
on:
44
push:
5-
branches: [ master ]
5+
branches: [master]
66
pull_request:
7-
branches: [ master ]
7+
branches: [master]
88

99
jobs:
1010
build:
1111
runs-on: ubuntu-latest
1212
steps:
13-
- uses: actions/checkout@v2
14-
- name: Set up Python 3.8
15-
uses: actions/setup-python@v1
13+
- uses: actions/checkout@v5
14+
- uses: actions/setup-python@v6
1615
with:
17-
python-version: 3.8
16+
python-version: "3.13"
1817
- name: Linting
1918
run: |
2019
pip install pre-commit

0 commit comments

Comments
 (0)