mirror of
https://github.com/pyenv/pyenv.git
synced 2026-01-07 05:51:31 +09:00
46 lines
1.2 KiB
YAML
46 lines
1.2 KiB
YAML
name: pyenv_tests
|
|
on: [pull_request, push]
|
|
|
|
permissions:
|
|
contents: read # to fetch code (actions/checkout)
|
|
|
|
jobs:
|
|
pyenv_tests:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os:
|
|
- ubuntu-24.04
|
|
- ubuntu-22.04
|
|
- macos-15-intel
|
|
- macos-15
|
|
- macos-14
|
|
runs-on: ${{ matrix.os }}
|
|
steps:
|
|
- uses: actions/checkout@v6
|
|
- run: |
|
|
if test "$RUNNER_OS" == "macOS"; then
|
|
brew install coreutils fish
|
|
elif [[ $(lsb_release -sr | awk -F. '{print $1}') -ge 20 ]]; then
|
|
# Ubuntu 18 has fish 2 which lacks many features that facilitate testing
|
|
sudo apt install fish -yq
|
|
fi
|
|
- run: pwd
|
|
- env:
|
|
PYENV_ROOT: /home/runner/work/pyenv/pyenv
|
|
run: |
|
|
echo $PYENV_ROOT
|
|
echo "$PYENV_ROOT/shims:$PYENV_ROOT/bin" >> $GITHUB_PATH
|
|
- name: Run test on the host
|
|
run: |
|
|
make test
|
|
- name: Run test with docker
|
|
if: ${{ ! contains(matrix.os, 'macos') }}
|
|
run: |
|
|
make test-docker
|
|
- env:
|
|
PYENV_NATIVE_EXT: 1
|
|
run: |
|
|
(cd src; ./configure; make)
|
|
bats/bin/bats test/{pyenv,hooks,versions}.bats
|