forked from Wavyzz/py-healthchecks.io
ci: update tests workflow
This commit is contained in:
51
.github/workflows/tests.yml
vendored
51
.github/workflows/tests.yml
vendored
@@ -17,14 +17,14 @@ jobs:
|
|||||||
# - { python: "3.9", os: "ubuntu-latest", session: "mypy" }
|
# - { python: "3.9", os: "ubuntu-latest", session: "mypy" }
|
||||||
# - { python: "3.8", os: "ubuntu-latest", session: "mypy" }
|
# - { python: "3.8", os: "ubuntu-latest", session: "mypy" }
|
||||||
# - { python: "3.7", os: "ubuntu-latest", session: "mypy" }
|
# - { python: "3.7", os: "ubuntu-latest", session: "mypy" }
|
||||||
- { python: "3.11", os: "ubuntu-latest", session: "tests" }
|
|
||||||
- { python: "3.10", os: "ubuntu-latest", session: "tests" }
|
- { python: "3.10", os: "ubuntu-latest", session: "tests" }
|
||||||
|
- { python: "3.11", os: "ubuntu-latest", session: "tests" }
|
||||||
- { python: "3.9", os: "ubuntu-latest", session: "tests" }
|
- { python: "3.9", os: "ubuntu-latest", session: "tests" }
|
||||||
- { python: "3.8", os: "ubuntu-latest", session: "tests" }
|
- { python: "3.8", os: "ubuntu-latest", session: "tests" }
|
||||||
- { python: "3.7", os: "ubuntu-latest", session: "tests" }
|
- { python: "3.7", os: "ubuntu-latest", session: "tests" }
|
||||||
# poetry fails to install on windows
|
|
||||||
# - { python: "3.10", os: "windows-latest", session: "tests" }
|
# - { python: "3.10", os: "windows-latest", session: "tests" }
|
||||||
- { python: "3.11", os: "macos-latest", session: "tests" }
|
# - { python: "3.10", os: "macos-latest", session: "tests" }
|
||||||
|
# - { python: "3.10", os: "ubuntu-latest", session: "typeguard" }
|
||||||
- { python: "3.10", os: "ubuntu-latest", session: "xdoctest" }
|
- { python: "3.10", os: "ubuntu-latest", session: "xdoctest" }
|
||||||
- { python: "3.10", os: "ubuntu-latest", session: "docs-build" }
|
- { python: "3.10", os: "ubuntu-latest", session: "docs-build" }
|
||||||
|
|
||||||
@@ -35,10 +35,10 @@ jobs:
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: Check out the repository
|
- name: Check out the repository
|
||||||
uses: actions/checkout@v3.1.0
|
uses: actions/checkout@v3.0.2
|
||||||
|
|
||||||
- name: Set up Python ${{ matrix.python }}
|
- name: Set up Python ${{ matrix.python }}
|
||||||
uses: actions/setup-python@v4.6.1
|
uses: actions/setup-python@v4.1.0
|
||||||
with:
|
with:
|
||||||
python-version: ${{ matrix.python }}
|
python-version: ${{ matrix.python }}
|
||||||
|
|
||||||
@@ -64,7 +64,7 @@ jobs:
|
|||||||
- name: Install Nox
|
- name: Install Nox
|
||||||
run: |
|
run: |
|
||||||
pipx install --pip-args=--constraint=.github/workflows/constraints.txt nox
|
pipx install --pip-args=--constraint=.github/workflows/constraints.txt nox
|
||||||
pipx inject --pip-args=--constraint=.github/workflows/constraints.txt nox nox-poetry toml
|
pipx inject --pip-args=--constraint=.github/workflows/constraints.txt nox nox-poetry
|
||||||
nox --version
|
nox --version
|
||||||
|
|
||||||
- name: Compute pre-commit cache key
|
- name: Compute pre-commit cache key
|
||||||
@@ -80,12 +80,12 @@ jobs:
|
|||||||
payload = sys.version.encode() + sys.executable.encode()
|
payload = sys.version.encode() + sys.executable.encode()
|
||||||
digest = hashlib.sha256(payload).hexdigest()
|
digest = hashlib.sha256(payload).hexdigest()
|
||||||
result = "${{ runner.os }}-{}-{}-pre-commit".format(python, digest[:8])
|
result = "${{ runner.os }}-{}-{}-pre-commit".format(python, digest[:8])
|
||||||
|
|
||||||
with open(os.environ['GITHUB_OUTPUT'], 'a') as fh:
|
with open(os.environ['GITHUB_OUTPUT'], 'a') as fh:
|
||||||
fh.write(f"result={result}\n")
|
fh.write(f"result={result}\n")
|
||||||
|
|
||||||
- name: Restore pre-commit cache
|
- name: Restore pre-commit cache
|
||||||
uses: actions/cache@v3.3.1
|
uses: actions/cache@v3.0.5
|
||||||
if: matrix.session == 'pre-commit'
|
if: matrix.session == 'pre-commit'
|
||||||
with:
|
with:
|
||||||
path: ~/.cache/pre-commit
|
path: ~/.cache/pre-commit
|
||||||
@@ -99,14 +99,14 @@ jobs:
|
|||||||
|
|
||||||
- name: Upload coverage data
|
- name: Upload coverage data
|
||||||
if: always() && matrix.session == 'tests'
|
if: always() && matrix.session == 'tests'
|
||||||
uses: "actions/upload-artifact@v3.1.2"
|
uses: "actions/upload-artifact@v3.1.0"
|
||||||
with:
|
with:
|
||||||
name: coverage-data
|
name: coverage-data
|
||||||
path: ".coverage.*"
|
path: ".coverage.*"
|
||||||
|
|
||||||
- name: Upload documentation
|
- name: Upload documentation
|
||||||
if: matrix.session == 'docs-build'
|
if: matrix.session == 'docs-build'
|
||||||
uses: actions/upload-artifact@v3.1.2
|
uses: actions/upload-artifact@v3.1.0
|
||||||
with:
|
with:
|
||||||
name: docs
|
name: docs
|
||||||
path: docs/_build
|
path: docs/_build
|
||||||
@@ -115,13 +115,34 @@ jobs:
|
|||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: tests
|
needs: tests
|
||||||
steps:
|
steps:
|
||||||
|
- name: Check out the repository
|
||||||
|
uses: actions/checkout@v3.0.2
|
||||||
|
|
||||||
|
- name: Set up Python
|
||||||
|
uses: actions/setup-python@v4.2.0
|
||||||
|
with:
|
||||||
|
python-version: "3.10"
|
||||||
|
|
||||||
|
- name: Upgrade pip
|
||||||
|
run: |
|
||||||
|
pip install --constraint=.github/workflows/constraints.txt pip
|
||||||
|
pip --version
|
||||||
|
|
||||||
|
- name: Install Poetry
|
||||||
|
run: |
|
||||||
|
pipx install --pip-args=--constraint=.github/workflows/constraints.txt poetry
|
||||||
|
poetry --version
|
||||||
|
|
||||||
|
- name: Install Nox
|
||||||
|
run: |
|
||||||
|
pipx install --pip-args=--constraint=.github/workflows/constraints.txt nox
|
||||||
|
pipx inject --pip-args=--constraint=.github/workflows/constraints.txt nox nox-poetry
|
||||||
|
nox --version
|
||||||
|
|
||||||
- name: Download coverage data
|
- name: Download coverage data
|
||||||
uses: actions/download-artifact@v3.0.2
|
uses: actions/download-artifact@v3.0.0
|
||||||
with:
|
with:
|
||||||
name: coverage-data
|
name: coverage-data
|
||||||
|
|
||||||
- name: Upload coverage report
|
- name: Upload coverage report
|
||||||
uses: codecov/codecov-action@v3.1.4
|
uses: codecov/codecov-action@v3.1.0
|
||||||
with:
|
|
||||||
files: .coverage.xml
|
|
||||||
verbose: true
|
|
||||||
|
|||||||
Reference in New Issue
Block a user