X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/d90297c77bab6e22831b05ffc099bfc709cc7785..d1aee5f7fa136b1f0a7d8dfc318af81009074070:/.vim/bundle/black/.github/workflows/fuzz.yml diff --git a/.vim/bundle/black/.github/workflows/fuzz.yml b/.vim/bundle/black/.github/workflows/fuzz.yml index 146277a..1b5a50c 100644 --- a/.vim/bundle/black/.github/workflows/fuzz.yml +++ b/.vim/bundle/black/.github/workflows/fuzz.yml @@ -2,6 +2,13 @@ name: Fuzz on: [push, pull_request] +concurrency: + group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.sha }} + cancel-in-progress: true + +permissions: + contents: read + jobs: build: # We want to run on external PRs, but not on our own internal PRs as they'll be run @@ -15,13 +22,13 @@ jobs: strategy: fail-fast: false matrix: - python-version: ["3.6", "3.7", "3.8", "3.9", "3.10"] + python-version: ["3.8", "3.9", "3.10", "3.11"] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }}