Bundle fzf 0.51.0 #48
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
name: test | |
on: | |
pull_request: {} | |
push: | |
branches: | |
- "*" | |
jobs: | |
test: | |
strategy: | |
matrix: | |
os: | |
- ubuntu-latest | |
- windows-latest | |
# FIXME Temporarily disabled macOS as tox hangs on it for some unknown | |
# reason, even though it works fine locally: | |
# - macos-latest | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: | | |
3.8 | |
3.9 | |
3.10 | |
3.11 | |
pypy3.10 | |
- uses: install-pinned/tox@9977353bc5a21c2a433f7ff4419a1d6ef036b4ba | |
- run: | | |
set -e | |
if [[ "$RUNNER_DEBUG" = "1" ]]; then | |
debug_options="--verbose" | |
fi | |
tox --exit-and-dump-after 60 $debug_options | |
shell: bash | |
env: | |
GITHUB_TOKEN: ${{ github.token }} | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: AlexanderMelde/yapf-action@master |