Skip to content

Use ISO 639-1 codes for languages #186

Use ISO 639-1 codes for languages

Use ISO 639-1 codes for languages #186

Workflow file for this run

name: Test Develop
on:
workflow_dispatch:
push:
branches:
- develop
- master
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
steps:
- uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
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.txt
pip install pytest
- name: Run tests for Python ${{ matrix.python-version }} on ${{ matrix.os }}
run: |
pip install -e .
pytest