]> git.madduck.net Git - etc/vim.git/blob - .github/workflows/test.yml

madduck's git repository

Every one of the projects in this repository is available at the canonical URL git://git.madduck.net/madduck/pub/<projectpath> — see each project's metadata for the exact URL.

All patches and comments are welcome. Please squash your changes to logical commits before using git-format-patch and git-send-email to patches@git.madduck.net. If you'd read over the Git project's submission guidelines and adhered to them, I'd be especially grateful.

SSH access, as well as push access can be individually arranged.

If you use my repositories frequently, consider adding the following snippet to ~/.gitconfig and using the third clone URL listed for each project:

[url "git://git.madduck.net/madduck/"]
  insteadOf = madduck:

Disable coverage on pypy tests (#3777)
[etc/vim.git] / .github / workflows / test.yml
1 name: Test
2
3 on:
4   push:
5     paths-ignore:
6       - "docs/**"
7       - "*.md"
8
9   pull_request:
10     paths-ignore:
11       - "docs/**"
12       - "*.md"
13
14 permissions:
15   contents: read
16
17 concurrency:
18   group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
19   cancel-in-progress: true
20
21 jobs:
22   main:
23     # We want to run on external PRs, but not on our own internal PRs as they'll be run
24     # by the push to the branch. Without this if check, checks are duplicated since
25     # internal PRs match both the push and pull_request events.
26     if:
27       github.event_name == 'push' || github.event.pull_request.head.repo.full_name !=
28       github.repository
29
30     runs-on: ${{ matrix.os }}
31     strategy:
32       fail-fast: false
33       matrix:
34         python-version: ["3.8", "3.9", "3.10", "3.11", "pypy-3.8"]
35         os: [ubuntu-latest, macOS-latest, windows-latest]
36
37     steps:
38       - uses: actions/checkout@v3
39
40       - name: Set up Python ${{ matrix.python-version }}
41         uses: actions/setup-python@v4
42         with:
43           python-version: ${{ matrix.python-version }}
44
45       - name: Install tox
46         run: |
47           python -m pip install --upgrade pip
48           python -m pip install --upgrade tox
49
50       - name: Unit tests
51         if: "!startsWith(matrix.python-version, 'pypy')"
52         run: tox -e ci-py -- -v --color=yes
53
54       - name: Unit tests (pypy)
55         if: "startsWith(matrix.python-version, 'pypy')"
56         run: tox -e ci-pypy3 -- -v --color=yes
57
58       - name: Upload coverage to Coveralls
59         # Upload coverage if we are on the main repository and
60         # we're running on Linux (this action only supports Linux)
61         if:
62           github.repository == 'psf/black' && matrix.os == 'ubuntu-latest' &&
63           !startsWith(matrix.python-version, 'pypy')
64         uses: AndreMiras/coveralls-python-action@v20201129
65         with:
66           github-token: ${{ secrets.GITHUB_TOKEN }}
67           parallel: true
68           flag-name: py${{ matrix.python-version }}-${{ matrix.os }}
69           debug: true
70
71   coveralls-finish:
72     needs: main
73     if: github.repository == 'psf/black'
74
75     runs-on: ubuntu-latest
76     steps:
77       - uses: actions/checkout@v3
78       - name: Send finished signal to Coveralls
79         uses: AndreMiras/coveralls-python-action@v20201129
80         with:
81           parallel-finished: true
82           debug: true
83
84   uvloop:
85     if:
86       github.event_name == 'push' || github.event.pull_request.head.repo.full_name !=
87       github.repository
88     runs-on: ${{ matrix.os }}
89     strategy:
90       fail-fast: false
91       matrix:
92         os: [ubuntu-latest, macOS-latest]
93
94     steps:
95       - uses: actions/checkout@v3
96
97       - name: Set up latest Python
98         uses: actions/setup-python@v4
99         with:
100           python-version: "*"
101
102       - name: Install black with uvloop
103         run: |
104           python -m pip install pip --upgrade --disable-pip-version-check
105           python -m pip install -e ".[uvloop]"
106
107       - name: Format ourselves
108         run: python -m black --check .