Add note to help resolve confusion around poetry run
and external env management
#2059
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# workaround for https://github.com/actions/virtual-environments/issues/1281 | |
name: Skip All Jobs | |
on: | |
push: | |
paths-ignore: | |
- '**' | |
- '!docs/**' | |
- '!.cirrus.yml' | |
- '!.github/workflows/docs.yml' | |
branches: | |
- master | |
- develop | |
pull_request: | |
paths-ignore: | |
- '**' | |
- '!docs/**' | |
- '!.cirrus.yml' | |
- '!.github/workflows/docs.yml' | |
branches: | |
- '**' | |
jobs: | |
tests: | |
name: ${{ matrix.os }} / ${{ matrix.python-version }} | |
# we do not need os specific runners here, using linux is quicker | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
os: [Ubuntu, macOS, Windows] | |
python-version: ["3.8", "3.9", "3.10", "3.11"] | |
steps: | |
- run: exit 0 |