]> git.madduck.net Git - etc/vim.git/blob - .vim/bundle/black/.github/workflows/fuzz.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:

Add '.vim/bundle/black/' from commit '2f3fa1f6d0cbc2a3f31c7440c422da173b068e7b'
[etc/vim.git] / .vim / bundle / black / .github / workflows / fuzz.yml
1 name: Fuzz
2
3 on: [push, pull_request]
4
5 jobs:
6   build:
7     # We want to run on external PRs, but not on our own internal PRs as they'll be run
8     # by the push to the branch. Without this if check, checks are duplicated since
9     # internal PRs match both the push and pull_request events.
10     if:
11       github.event_name == 'push' || github.event.pull_request.head.repo.full_name !=
12       github.repository
13
14     runs-on: ubuntu-latest
15     strategy:
16       fail-fast: false
17       matrix:
18         python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"]
19
20     steps:
21       - uses: actions/checkout@v2
22
23       - name: Set up Python ${{ matrix.python-version }}
24         uses: actions/setup-python@v2
25         with:
26           python-version: ${{ matrix.python-version }}
27
28       - name: Install dependencies
29         run: |
30           python -m pip install --upgrade pip
31           python -m pip install --upgrade tox
32
33       - name: Run fuzz tests
34         run: |
35           tox -e fuzz