X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/5918a016ff82e5fa12097d07b1624a89ec4e60ac..8ea641eed5b9540287a8e9a9afa1458b72b9b630:/.github/workflows/test.yml diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 03adc7f..8e6b4a7 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1,6 +1,15 @@ name: Test -on: [push, pull_request] +on: + push: + paths-ignore: + - "docs/**" + - "*.md" + + pull_request: + paths-ignore: + - "docs/**" + - "*.md" jobs: build: @@ -15,7 +24,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [3.6, 3.7, 3.8, 3.9] + python-version: ["3.6", "3.7", "3.8", "3.9", "3.10-dev"] os: [ubuntu-latest, macOS-latest, windows-latest] steps: @@ -33,7 +42,7 @@ jobs: - name: Unit tests run: | - tox -e py + tox -e ci-py -- -v --color=yes - name: Publish coverage to Coveralls # If pushed / is a pull request against main repo AND