Skip to content

Commit 972bf08

Browse files
committed
test
1 parent 50dc78e commit 972bf08

8 files changed

+148
-58
lines changed
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ issue-837 ]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Check out source code
13+
uses: actions/checkout@v4
14+
15+
- name: Set up Python
16+
uses: actions/setup-python@v5
17+
with:
18+
python-version: '3.11.8'
19+
20+
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ issue-837 ]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Check out source code
13+
uses: actions/checkout@v4
14+
15+
- name: Set up Python
16+
uses: actions/setup-python@v5
17+
with:
18+
python-version: '3.11.8'
19+
20+
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ issue-837 ]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Check out source code
13+
uses: actions/checkout@v4
14+
15+
- name: Set up Python
16+
uses: actions/setup-python@v5
17+
with:
18+
python-version: '3.11.8'
19+
20+
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ issue-837 ]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Check out source code
13+
uses: actions/checkout@v4
14+
15+
- name: Set up Python
16+
uses: actions/setup-python@v5
17+
with:
18+
python-version: '3.11.8'
19+
20+
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ issue-837 ]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Check out source code
13+
uses: actions/checkout@v4
14+
15+
- name: Set up Python
16+
uses: actions/setup-python@v5
17+
with:
18+
python-version: '3.11.8'
19+
20+
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ issue-837 ]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Check out source code
13+
uses: actions/checkout@v4
14+
15+
- name: Set up Python
16+
uses: actions/setup-python@v5
17+
with:
18+
python-version: '3.11.8'
19+
20+

.github/workflows/python-app copy.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches: [ issue-837 ]
6+
7+
jobs:
8+
build:
9+
runs-on: ubuntu-latest
10+
11+
steps:
12+
- name: Check out source code
13+
uses: actions/checkout@v4
14+
15+
- name: Set up Python
16+
uses: actions/setup-python@v5
17+
with:
18+
python-version: '3.11.8'
19+
20+

.github/workflows/python-app.yml

+8-58
Original file line numberDiff line numberDiff line change
@@ -1,70 +1,20 @@
1-
# This workflow will upload a Python Package using Twine when a release is created
2-
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python#publishing-to-package-registries
3-
4-
# This workflow uses actions that are not certified by GitHub.
5-
# They are provided by a third-party and are governed by
6-
# separate terms of service, privacy policy, and support
7-
# documentation.
8-
9-
name: Upload Python Package
1+
name: CI
102

113
on:
124
push:
13-
branches: [ "main" ]
14-
pull_request:
15-
branches: [ "main" ]
16-
17-
permissions:
18-
contents: read
5+
branches: [ issue-837 ]
196

207
jobs:
21-
# test:
22-
# runs-on: macos-latest
23-
# steps:
24-
# - uses: actions/checkout@v2
25-
# - uses: actions/setup-python@v2
26-
# with:
27-
# python-version: 3.7
28-
# - run: |
29-
# echo $PATH
30-
# python --version
31-
# which python
32-
# - run: |
33-
# echo $PATH
34-
# python --version
35-
# which python
36-
# shell: bash {0}
37-
# - run: |
38-
# echo $PATH
39-
# python --version
40-
# which python
41-
# shell: bash -l {0}
42-
43-
44-
deploy:
45-
8+
build:
469
runs-on: ubuntu-latest
4710

4811
steps:
49-
- uses: actions/checkout@v3
12+
- name: Check out source code
13+
uses: actions/checkout@v4
14+
5015
- name: Set up Python
5116
uses: actions/setup-python@v5
5217
with:
53-
python-version: "3.10"
18+
python-version: '3.11.8'
5419

55-
56-
57-
58-
59-
60-
- name: Install dependencies
61-
run: |
62-
python -m pip install --upgrade pip
63-
pip install build
64-
- name: Build package
65-
run: python -m build
66-
- name: Publish package
67-
uses: pypa/gh-action-pypi-publish@27b31702a0e7fc50959f5ad993c78deac1bdfc29
68-
with:
69-
user: __token__
70-
password: ${{ secrets.PYPI_API_TOKEN }}
20+

0 commit comments

Comments
 (0)