]> 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:

3ca2a469147126ec233af52d30e75fe33f524ab9
[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.7", "3.8", "3.9", "3.10", "3.11", "pypy-3.7", "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: github.repository == 'psf/black' && matrix.os == 'ubuntu-latest'
62         uses: AndreMiras/coveralls-python-action@v20201129
63         with:
64           github-token: ${{ secrets.GITHUB_TOKEN }}
65           parallel: true
66           flag-name: py${{ matrix.python-version }}-${{ matrix.os }}
67           debug: true
68
69   coveralls-finish:
70     needs: main
71     if: github.repository == 'psf/black'
72
73     runs-on: ubuntu-latest
74     steps:
75       - uses: actions/checkout@v3
76       - name: Send finished signal to Coveralls
77         uses: AndreMiras/coveralls-python-action@v20201129
78         with:
79           parallel-finished: true
80           debug: true
81
82   uvloop:
83     if:
84       github.event_name == 'push' || github.event.pull_request.head.repo.full_name !=
85       github.repository
86     runs-on: ${{ matrix.os }}
87     strategy:
88       fail-fast: false
89       matrix:
90         os: [ubuntu-latest, macOS-latest]
91
92     steps:
93       - uses: actions/checkout@v3
94
95       - name: Set up latest Python
96         uses: actions/setup-python@v4
97         with:
98           python-version: "*"
99
100       - name: Install black with uvloop
101         run: |
102           python -m pip install pip --upgrade --disable-pip-version-check
103           python -m pip install -e ".[uvloop]"
104
105       - name: Format ourselves
106         run: python -m black --check src/