Skip to content

Differentiate the names for each of the tox runs in github #7

Differentiate the names for each of the tox runs in github

Differentiate the names for each of the tox runs in github #7

Workflow file for this run

name: [server] Run unit tests

Check failure on line 1 in .github/workflows/server-tox.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/server-tox.yml

Invalid workflow file

You have an error in your yaml syntax
on:
push:
branches: [ main ]
paths:
- server/**
pull_request:
branches: [ main ]
paths:
- server/**
jobs:
build:
defaults:
run:
working-directory: server
runs-on: ubuntu-latest
strategy:
matrix:
python: ["3.8", "3.10"]
steps:
- uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python }}
- name: Install tox
run: pip install tox
- name: Run tests
run: |
tox