mirror of https://github.com/kivy/kivy.git
Upgrade GitHub Actions versions (#8117)
* GitHub Actions: Fix unix unit test SETUPTOOLS_ENABLE_FEATURES: "legacy-editable" * Revert SETUPTOOLS_ENABLE_FEATURES: 'legacy-editable' Co-authored-by: Mirko Galimberti <me@mirkogalimberti.com> --------- Co-authored-by: Mirko Galimberti <me@mirkogalimberti.com>
This commit is contained in:
parent
5cf46a0c4c
commit
dfa79431e4
|
@ -9,9 +9,9 @@ jobs:
|
|||
PEP8_test:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v3
|
||||
- name: Set up Python 3.x
|
||||
uses: actions/setup-python@v2
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: 3.9
|
||||
- name: Validate PEP8
|
||||
|
@ -24,9 +24,9 @@ jobs:
|
|||
env:
|
||||
DISPLAY: ':99.0'
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v3
|
||||
- name: Set up Python 3.x
|
||||
uses: actions/setup-python@v2
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: 3.9
|
||||
- name: Install dependencies
|
||||
|
@ -58,7 +58,7 @@ jobs:
|
|||
source .ci/ubuntu_ci.sh
|
||||
test_kivy_benchmark
|
||||
- name: Upload benchmarks as artifact
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: benchmarks
|
||||
path: .benchmarks-kivy
|
||||
|
@ -66,9 +66,9 @@ jobs:
|
|||
gen_docs:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- uses: actions/checkout@v3
|
||||
- name: Set up Python 3.x
|
||||
uses: actions/setup-python@v2
|
||||
uses: actions/setup-python@v4
|
||||
with:
|
||||
python-version: 3.9
|
||||
- name: Install dependencies
|
||||
|
@ -89,7 +89,7 @@ jobs:
|
|||
source .ci/ubuntu_ci.sh
|
||||
generate_docs
|
||||
- name: Upload docs as artifact
|
||||
uses: actions/upload-artifact@v2
|
||||
uses: actions/upload-artifact@v3
|
||||
with:
|
||||
name: docs
|
||||
path: doc/build/html
|
||||
|
|
Loading…
Reference in New Issue