Skip to content

New session key generation (PEP 506) (#3) #37

New session key generation (PEP 506) (#3)

New session key generation (PEP 506) (#3) #37

Workflow file for this run

name: Test source code
on:
push:
branches: ["main"]
pull_request:
branches: ["*"]
jobs:
build:
strategy:
runs-on: ubuntu-latest

Check failure on line 12 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / Test source code

Invalid workflow file

The workflow is not valid. .github/workflows/test.yml (Line: 12, Col: 7): Unexpected value 'runs-on' .github/workflows/test.yml (Line: 11, Col: 5): Required property is missing: runs-on
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12.0-rc.3"]
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements-tests.txt
- name: Run tests
run: |
pytest tests/