WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
Skip to content

๐Ÿงผ Cleanup labels name after test run #1

๐Ÿงผ Cleanup labels name after test run

๐Ÿงผ Cleanup labels name after test run #1

Workflow file for this run

---
name: ๐Ÿงช Test
on:
push:
branches:
- main
paths:
- .github/workflows/*
- src/**
- test/**
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
lint:
name: ๐Ÿงน Lint
runs-on: ubuntu-latest
if: github.actor != 'renovate[bot]'
steps:
- name: ๐Ÿ“ฅ Checkout repository
uses: actions/checkout@v5
- uses: pre-commit/[email protected]
tests:
name: ๐Ÿงช Tests - ${{ matrix.slice }}
runs-on: ubuntu-latest
needs: lint
steps:
- name: ๐Ÿ“ฅ Checkout repository
uses: actions/checkout@v5
- name: ๐Ÿ Setup Python
uses: actions/setup-python@v6
with:
python-version: 3.11
- name: ๐Ÿงช Run tests
run: |
python -m pip install -e .[dev]
pytest --exitfirst