Skip to content
This repository has been archived by the owner on Aug 9, 2024. It is now read-only.

chore: update global workflows #194

chore: update global workflows

chore: update global workflows #194

Workflow file for this run

---
name: Python Tests
on:
pull_request:
branches: [master, nightly]
types: [opened, synchronize, reopened]
jobs:
pytest:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install python dependencies
run: |
python -m pip install --upgrade pip setuptools
python -m pip install -r requirements-dev.txt
- name: Test with pytest
env:
GH_TOKEN: ${{ github.token }}
PAT_TOKEN: ${{ secrets.GH_BOT_TOKEN }}
run: |
python -m pytest -v