Skip to content

Commit ce7e2e2

Browse files
committed
Merge branch 'master' of cpburnz-github:cpburnz/python-pathspec
2 parents 32185d0 + bad28c8 commit ce7e2e2

File tree

3 files changed

+35
-22
lines changed

3 files changed

+35
-22
lines changed

.github/workflows/ci.yaml

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: CI
2+
3+
permissions:
4+
contents: read
5+
6+
on:
7+
push:
8+
branches: [master]
9+
pull_request:
10+
11+
jobs:
12+
test:
13+
name: Test / ${{ matrix.python }} / ${{ matrix.os }}
14+
runs-on: ${{ matrix.os }}-latest
15+
strategy:
16+
fail-fast: false
17+
matrix:
18+
os: [ubuntu, macos, windows]
19+
python: ["3.7", "3.8", "3.9", "3.10", "3.11.0-rc - 3.11",
20+
"pypy-3.7", "pypy-3.8", "pypy-3.9"]
21+
22+
steps:
23+
- uses: actions/checkout@v3
24+
25+
- name: Set up Python ${{ matrix.python }}
26+
uses: actions/setup-python@v4
27+
with:
28+
python-version: ${{ matrix.python }}
29+
30+
- name: Install tox
31+
run: python -m pip install tox
32+
33+
- name: Run tests
34+
run: python -m tox -e py -- --verbose

.travis.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ envlist = py37, py38, py39, py310, py311, pypy3
33
isolated_build = True
44

55
[testenv]
6-
commands = python -m unittest
6+
commands = python -m unittest {posargs}

0 commit comments

Comments
 (0)