Skip to content

chore(node-deps): upgrade to yarn 4.5.1 #41

chore(node-deps): upgrade to yarn 4.5.1

chore(node-deps): upgrade to yarn 4.5.1 #41

Workflow file for this run

name: CI
on:
push:
branches-ignore:
- main
- release
jobs:
test:
strategy:
fail-fast: true
matrix:
os: [ "ubuntu-latest", "macos-latest", "windows-latest" ]
python-version: [ "3.10", "3.11", "3.12", "3.13" ]
defaults:
run:
shell: bash
runs-on: ${{ matrix.os }}
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up python ${{ matrix.python-version }}
id: setup-python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Poetry
uses: snok/install-poetry@v1
with:
version: 1.8.4
virtualenvs-create: true
virtualenvs-in-project: true
installer-parallel: true
- name: Install dependencies
run: poetry install --no-interaction --no-root
- name: Install project
run: poetry install --no-interaction
- name: Run tests
run: |
source $VENV
pytest tests --exitfirst --verbose --failed-first --cov=newspy