Skip to content

Generate workflow files with a Jinja template #4

Generate workflow files with a Jinja template

Generate workflow files with a Jinja template #4

Workflow file for this run

# Do not edit this file.
# This file is generated automatically by executing tox -e generate_workflows
name: Misc
on:
push:
branches-ignore:
- 'release/*'
pull_request:
env:
CONTRIB_REPO_SHA: main
jobs:
misc:
strategy:
fail-fast: false
matrix:
tox-environment: ["docker-tests-proto3", "docker-tests-proto4", "spellcheck",
"docs", "mypy", "mypyinstalled", "tracecontext"]
name: ${{ matrix.tox-environment }}
runs-on: ubuntu-20.04
steps:
- name: Checkout Core Repo @ SHA - ${{ github.sha }}
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
architecture: 'x64'
- name: Install tox
run: pip install tox
- name: run tox
run: tox -e ${{ matrix.tox-environment }}