FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
contributing/.github/workflows/python_ci_linux.yml at master · python-formate/contributing · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
python-formate
/
contributing
Public
forked from
repo-helper/contributing
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
0
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
contributing
/
.github
/
workflows
/
python_ci_linux.yml
Copy path
View runs
More file actions
More file actions
Latest commit
History
History
History
63 lines (55 loc) · 1.79 KB
Breadcrumbs
contributing
/
.github
/
workflows
/
python_ci_linux.yml
Copy path
File metadata and controls
63 lines (55 loc) · 1.79 KB
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
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
#
This file is managed by 'repo_helper'. Don't edit it directly.
---
name
:
Linux
on
:
push
:
branches-ignore
:
-
'
repo-helper-update
'
-
'
pre-commit-ci-update-config
'
-
'
imgbot
'
tags
:
-
'
*
'
pull_request
:
jobs
:
tests
:
permissions
:
actions
:
write
contents
:
read
name
:
"
ubuntu-22.04 / Python ${{ matrix.config.python-version }}
"
runs-on
:
"
ubuntu-22.04
"
continue-on-error
:
${{ matrix.config.experimental }}
env
:
USING_COVERAGE
:
'
3.8
'
strategy
:
fail-fast
:
False
matrix
:
config
:
-
{python-version: "3.8", testenvs: "py38,build", experimental: False}
steps
:
-
name
:
Checkout 🛎️
uses
:
"
actions/checkout@v6
"
-
name
:
Check for changed files
if
:
startsWith(github.ref, 'refs/tags/') != true
uses
:
dorny/paths-filter@v4
id
:
changes
with
:
list-files
:
"
json
"
filters
:
|
code:
- '!(doc-source/**|CONTRIBUTING.rst|.imgbotconfig|.pre-commit-config.yaml|.pylintrc|.readthedocs.yml)'
-
name
:
Setup Python 🐍
id
:
setup-python
if
:
${{ steps.changes.outputs.code == 'true' || steps.changes.outcome == 'skipped' }}
uses
:
"
actions/setup-python@v6
"
with
:
python-version
:
"
${{ matrix.config.python-version }}
"
-
name
:
Install dependencies 🔧
if
:
steps.setup-python.outcome == 'success'
run
:
|
python -VV
python -m site
python -m pip install --upgrade pip setuptools wheel
python -m pip install --upgrade tox~=3.0 virtualenv!=20.16.0
-
name
:
"
Run Tests for Python ${{ matrix.config.python-version }}
"
if
:
steps.setup-python.outcome == 'success'
run
:
python -m tox -e "${{ matrix.config.testenvs }}" -s false
Back
|
FazBrowse Home
|
New Git URL