Skip to content

test workflow run name #34

test workflow run name

test workflow run name #34

Workflow file for this run

name: test-workflow-name
run-name: test workflow run name
on:
pull_request:
branches:
- main
types:
- opened
- synchronize
push:
branches:
- main
defaults:
run:
shell: bash
jobs:
test-job-identifier:
name: test job name
strategy:
fail-fast: false
matrix:
runner-platform:
- macos-latest
- ubuntu-latest
- windows-latest
python-version:
- "3.10"
- "3.11"
max-parallel: 2
runs-on: ${{ matrix.runner-platform }}
steps:
- name: checkout commit
uses: actions/checkout@v3
- name: set up python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
check-latest: true
architecture: x64
cache: pip
- name: run unit tests on python ${{ matrix.python-version }} in runner ${{ matrix.runner-platform }}
uses: ./.github/actions/nox-sessions-action-identifier
with:
session-name-input-identifier: pytest
python-version-input-identifier: ${{ matrix.python-version }}
- name: upload coverage reports
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: coverage_xml_report.xml