ci: update github action versions, remove outdated comment (#7177)
This commit is contained in:
parent
a039fe3e92
commit
c66bf59fd5
|
@ -1,9 +1,3 @@
|
||||||
# evaluating GitHub actions for CI, disregard failures when evaluating PRs
|
|
||||||
#
|
|
||||||
# this is still missing:
|
|
||||||
# - deploy
|
|
||||||
# - upload github notes
|
|
||||||
#
|
|
||||||
name: main
|
name: main
|
||||||
|
|
||||||
on:
|
on:
|
||||||
|
@ -133,9 +127,11 @@ jobs:
|
||||||
use_coverage: true
|
use_coverage: true
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v2
|
||||||
|
# For setuptools-scm.
|
||||||
|
- run: git fetch --prune --unshallow
|
||||||
- name: Set up Python ${{ matrix.python }}
|
- name: Set up Python ${{ matrix.python }}
|
||||||
uses: actions/setup-python@v1
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python }}
|
python-version: ${{ matrix.python }}
|
||||||
- name: install python3.9
|
- name: install python3.9
|
||||||
|
@ -180,9 +176,11 @@ jobs:
|
||||||
needs: [build]
|
needs: [build]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v2
|
||||||
|
# For setuptools-scm.
|
||||||
|
- run: git fetch --prune --unshallow
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v1
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: "3.7"
|
python-version: "3.7"
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
|
|
|
@ -14,9 +14,12 @@ jobs:
|
||||||
if: (github.event.comment && startsWith(github.event.comment.body, '@pytestbot please')) || (github.event.issue && !github.event.comment && startsWith(github.event.issue.body, '@pytestbot please'))
|
if: (github.event.comment && startsWith(github.event.comment.body, '@pytestbot please')) || (github.event.issue && !github.event.comment && startsWith(github.event.issue.body, '@pytestbot please'))
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v1
|
- uses: actions/checkout@v2
|
||||||
|
# For setuptools-scm.
|
||||||
|
- run: git fetch --prune --unshallow
|
||||||
|
|
||||||
- name: Set up Python
|
- name: Set up Python
|
||||||
uses: actions/setup-python@v1
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: "3.8"
|
python-version: "3.8"
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
|
|
Loading…
Reference in New Issue