forked from un33k/python-slugify
-
Notifications
You must be signed in to change notification settings - Fork 0
34 lines (32 loc) · 675 Bytes
/
main.yml
File metadata and controls
34 lines (32 loc) · 675 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
name: Main
on:
pull_request: null
push:
branches:
- master
jobs:
build:
name: Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: setup python
uses: actions/setup-python@v6
with:
python-version: |
pypy3.11
3.10
3.11
3.12
3.13
3.14
- name: Install dependencies
run: |
python -m pip install coveralls tox tox-uv
- name: Run test
run: |
tox
- name: Coveralls
run: coveralls --service=github
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}