Skip to content

chore(deps): update all dependencies #222

chore(deps): update all dependencies

chore(deps): update all dependencies #222

on:
pull_request:
branches:
- main
name: unittest-prerelease
jobs:
unit-prerelease:
runs-on: ubuntu-latest
strategy:
matrix:
python: ['3.11']
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install nox
run: |
python -m pip install --upgrade setuptools pip wheel
python -m pip install nox
- name: Run unit tests
env:
COVERAGE_FILE: .coverage-prerelease-${{ matrix.python }}
run: |
nox -s unit_prerelease
- name: Upload coverage results
uses: actions/upload-artifact@v3
with:
name: coverage-artifacts
path: .coverage-${{ matrix.python }}