-
Notifications
You must be signed in to change notification settings - Fork 0
96 lines (85 loc) · 3.17 KB
/
Copy pathpython-version-actions.yml
File metadata and controls
96 lines (85 loc) · 3.17 KB
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
name: Python-Version-Check
on: workflow_dispatch
jobs:
build-38:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8"]
steps:
- name: Clean result directory
run: rm -rf result
- uses: actions/checkout@v3
- run: git pull
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: mkdir -p result
- name: Display Python version
run: python -c "import sys; print(sys.version)" > result/python-version-${{ matrix.python-version }}.txt
- uses: actions/upload-artifact@v3
with:
name: python-version-check-result
path: result/python-version-${{ matrix.python-version }}.txt
- name: Store the result
run: |
git config --local user.email "guminb@ajou.ac.kr"
git config --local user.name "Gyumin Baek"
git add -A
git commit --allow-empty -m "store python-version-${{ matrix.python-version }}.txt"
git push origin HEAD:${{ github.ref }}
build-39:
needs: build-38
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9"]
steps:
- uses: actions/checkout@v3
- run: git pull
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: mkdir -p result
- name: Display Python version
run: python -c "import sys; print(sys.version)" > result/python-version-${{ matrix.python-version }}.txt
- uses: actions/upload-artifact@v3
with:
name: python-version-check-result
path: result/python-version-${{ matrix.python-version }}.txt
- name: Store the result
run: |
git config --local user.email "guminb@ajou.ac.kr"
git config --local user.name "Gyumin Baek"
git add -A
git commit --allow-empty -m "store python-version-${{ matrix.python-version }}.txt"
git push origin HEAD:${{ github.ref }}
build-310:
needs: build-39
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: actions/checkout@v3
- run: git pull
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- run: mkdir -p result
- name: Display Python version
run: python -c "import sys; print(sys.version)" > result/python-version-${{ matrix.python-version }}.txt
- uses: actions/upload-artifact@v3
with:
name: python-version-check-result
path: result/python-version-${{ matrix.python-version }}.txt
- name: Store the result
run: |
git config --local user.email "guminb@ajou.ac.kr"
git config --local user.name "Gyumin Baek"
git add -A
git commit --allow-empty -m "store python-version-${{ matrix.python-version }}.txt"
git push origin HEAD:${{ github.ref }}