skip.yml (poetry-1.1.15) | : | skip.yml (poetry-1.2.0) | ||
---|---|---|---|---|
# workaround for https://github.com/actions/virtual-environments/issues/1281 | # workaround for https://github.com/actions/virtual-environments/issues/1281 | |||
name: Skip All Jobs | name: Skip All Jobs | |||
on: | on: | |||
push: | push: | |||
paths: | paths-ignore: | |||
- '!**' | - '**' | |||
- 'docs/**' | - '!docs/**' | |||
- '.cirrus.yml' | - '!.cirrus.yml' | |||
- '!.github/workflows/docs.yml' | ||||
branches: | branches: | |||
- master | - master | |||
- develop | - develop | |||
pull_request: | pull_request: | |||
paths: | paths-ignore: | |||
- '!**' | - '**' | |||
- 'docs/**' | - '!docs/**' | |||
- '.cirrus.yml' | - '!.cirrus.yml' | |||
- '!.github/workflows/docs.yml' | ||||
branches: | branches: | |||
- '**' | - '**' | |||
jobs: | jobs: | |||
pre-commit: | ||||
name: Linting | ||||
runs-on: ubuntu-latest | ||||
steps: | ||||
- run: exit 0 | ||||
tests: | tests: | |||
name: ${{ matrix.os }} / ${{ matrix.python-version }} | name: ${{ matrix.os }} / ${{ matrix.python-version }} | |||
# we do not need os specific runners here, using linux is quicker | # we do not need os specific runners here, using linux is quicker | |||
runs-on: ubuntu-latest | runs-on: ubuntu-latest | |||
strategy: | strategy: | |||
matrix: | matrix: | |||
os: [Ubuntu, MacOS, Windows] | os: [Ubuntu, macOS, Windows] | |||
python-version: [2.7, 3.5, 3.6, 3.7, 3.8] | python-version: ["3.7", "3.8", "3.9", "3.10", "3.11-dev"] | |||
steps: | steps: | |||
- run: exit 0 | - run: exit 0 | |||
End of changes. 4 change blocks. | ||||
16 lines changed or deleted | 12 lines changed or added |