Skip to content

Update countries.yml #2

Update countries.yml

Update countries.yml #2

Workflow file for this run

name: CI
on:
pull_request:
branches:
- master
jobs:
test-full:
name: Run CI Tests
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest]
python-version: ["3.11"]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
- name: Check Python version
run: python --version
- name: Install dependencies
run: python -m pip install ".[test]"
- name: Run tests
run: python -m pytest