Skip to content

⬆️ auto update by pre-commit hooks #93

⬆️ auto update by pre-commit hooks

⬆️ auto update by pre-commit hooks #93

Workflow file for this run

name: Test
on:
push:
branches:
- main
paths:
- nonebot_plugin_skland_arksign/**
- tests/**
- pyproject.toml
- pdm.lock
- .github/**
pull_request:
paths:
- nonebot_plugin_skland_arksign/**
- tests/**
- pyproject.toml
- pdm.lock
- .github/**
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: Test
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: ["3.10", "3.11", "3.12"]
os: [ubuntu-latest, windows-latest]
fail-fast: false
env:
OS: ${{ matrix.os }}
PYTHON_VERSION: ${{ matrix.python-version }}
steps:
- uses: actions/checkout@v4
- name: Setup Python environment
uses: ./.github/actions/setup-python
with:
python-version: ${{ matrix.python-version }}
- name: Install prerequisites
run: pdm install
- name: Run Pytest
run: pdm run pytest -n auto