FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
adventofcode/.github/workflows/ci-2022-python.yml at master · Peter554/adventofcode · GitHub
Peter554
/
adventofcode
Public
Notifications
You must be signed in to change notification settings
Fork
1
Star
3
Code
Pull requests
0
Actions
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
adventofcode
/
.github
/
workflows
/
ci-2022-python.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
27 lines (27 loc) · 740 Bytes
Breadcrumbs
adventofcode
/
.github
/
workflows
/
ci-2022-python.yml
Copy path
File metadata and controls
27 lines (27 loc) · 740 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
name
:
CI 2022 Python
on
:
push
:
branches
:
-
master
-
"
2022-py-*
"
paths
:
-
'
2022/python/**
'
jobs
:
check-code
:
name
:
Check the code
runs-on
:
ubuntu-latest
steps
:
-
uses
:
actions/checkout@v3
-
uses
:
actions/setup-python@v4
with
:
python-version
:
"
3.10
"
-
name
:
Install taskfile
run
:
sh -c "$(curl --location https://taskfile.dev/install.sh)" -- -d -b /usr/local/bin
-
name
:
Install poetry
run
:
curl -sSL https://install.python-poetry.org | python -
-
name
:
Install Python dependencies
run
:
poetry install
working-directory
:
./2022/python
-
name
:
Check
run
:
task check
working-directory
:
./2022/python
Back
|
FazBrowse Home
|
New Git URL