Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
153fc6e
Create 7.txt
wgitw Jul 9, 2023
6f5cc31
Create 8.txt
wgitw Jul 9, 2023
1d8dccd
Create main.yml
sujin23 Jul 9, 2023
83cb6c8
Create test-github-actions.yml
sujin23 Jul 9, 2023
4553e0d
Create github-actions-demo.yml
sujin23 Jul 9, 2023
d24d7fa
Create python.yml
sujin23 Jul 9, 2023
60fb822
Update python-demo.yml
sujin23 Jul 9, 2023
303a70a
Create first.yml
sujin23 Jul 9, 2023
4cdb0a6
3.8
sujin23 Jul 9, 2023
560d854
Create set.yml
sujin23 Jul 9, 2023
8f39278
Create github-actions-demo1.yml
sujin23 Jul 9, 2023
e316a4e
Create 910.yaml
sujin23 Jul 9, 2023
a07c29d
Delete Python.yml
sujin23 Jul 9, 2023
ca41978
Delete test-github-actions.yml
sujin23 Jul 9, 2023
855d49c
Delete set.yml
sujin23 Jul 9, 2023
baa1094
Delete python.yml
sujin23 Jul 9, 2023
6380ec0
Delete python.yaml
sujin23 Jul 9, 2023
5b1718d
Delete 910.yaml
sujin23 Jul 9, 2023
bb2b25f
Delete main.yml
sujin23 Jul 9, 2023
07cde99
Delete gitleaks.yml
sujin23 Jul 9, 2023
0f61569
Delete first.yml
sujin23 Jul 9, 2023
e53534b
Delete github-actions-demo.yml
sujin23 Jul 9, 2023
c1077fe
Delete github-actions-demo1.yml
sujin23 Jul 9, 2023
c753eae
Create python.yml
sujin23 Jul 9, 2023
e912327
Create Python-test.yml
sujin23 Jul 9, 2023
c720377
Update Python-test.yml
sujin23 Jul 9, 2023
a953173
Create python-9-10-test.yml
sujin23 Jul 9, 2023
3ccd4b3
Create assignment_output_by_version.yml
sujin23 Jul 9, 2023
54badc2
Update assignment_output_by_version.yml
sujin23 Jul 9, 2023
71fd965
Update assignment_output_by_version.yml
sujin23 Jul 9, 2023
f20d937
Update python-9-10-test.yml
sujin23 Jul 9, 2023
7ed192c
Update assignment_output_by_version.yml
sujin23 Jul 9, 2023
fe1d10e
Update python-9-10-test.yml
sujin23 Jul 9, 2023
eed3304
Update python-9-10-test.yml
sujin23 Jul 9, 2023
e8f41aa
Rename assignment_output_by_version.yml to output_by_version.yml
sujin23 Jul 9, 2023
ac3a3dc
Rename .github/workflows/python-9-10-test.yml to .github/TEST-workflo…
sujin23 Jul 9, 2023
2c62fde
Rename Python-test.yml to TEST-Python-test.yml
sujin23 Jul 9, 2023
00b2a71
Rename .github/TEST-workflowspython-9-10.yml to .github/workspace/TES…
sujin23 Jul 9, 2023
c499dfa
Rename TEST-workflowspython-9-10.yml to TEST-workflowspython-9-10.yml
sujin23 Jul 9, 2023
53ecfa8
Rename output_by_version.yml to TEST-output_by_version.yml
sujin23 Jul 9, 2023
1ca059b
Create Final.yml
sujin23 Jul 9, 2023
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 30 additions & 0 deletions .github/workflows/Final.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Python

on: workflow_dispatch

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]

steps:
- name: Create a file
run: echo ${{ matrix.python-version }} > my_file.txt

- name: Accidentally upload to the same artifact via multiple jobs
uses: actions/upload-artifact@v3

with:
name: my-artifact-${{ matrix.python-version }}
path: ${{ github.workspace }}

- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
20 changes: 20 additions & 0 deletions .github/workflows/TEST-Python-test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: Python

on: workflow_dispatch

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
24 changes: 24 additions & 0 deletions .github/workflows/TEST-output_by_version.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Python

on: workflow_dispatch

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]

steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
- name: Upload Artifacts
uses: actions/upload-Artifact@v3
with:
name: python${{ matrix.python-verson }}_artifact
30 changes: 30 additions & 0 deletions .github/workflows/TEST-workflowspython-9-10.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Python

on: workflow_dispatch

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.8", "3.9", "3.10"]

steps:
- name: Create a file
run: echo ${{ matrix.python-version }} > my_file.txt

- name: Accidentally upload to the same artifact via multiple jobs
uses: actions/upload-artifact@v3

with:
name: my-artifact-${{ matrix.python-version }}
path: ${{ github.workspace }}

- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Display Python version
run: python -c "import sys; print(sys.version)"
15 changes: 0 additions & 15 deletions .github/workflows/gitleaks.yml

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on: workflow_dispatch

jobs:
build:

runs-on: ubuntu-latest
strategy:
matrix:
Expand Down
1 change: 1 addition & 0 deletions file/7.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
7
1 change: 1 addition & 0 deletions file/8.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
8