mirror of
https://github.com/pyenv/pyenv.git
synced 2024-12-04 14:01:41 -05:00
5f9c0ba613
The version 3.x appears to be due to the following: - https://github.com/actions/checkout/pull/689 There have been no breaking changes, and we seem to have no problem keeping up with the latest version.
17 lines
383 B
YAML
17 lines
383 B
YAML
name: CI
|
|
on: [push, pull_request]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
os: [ubuntu-latest, macos-latest]
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- name: Install bats
|
|
run: git clone --depth 1 https://github.com/sstephenson/bats.git
|
|
- name: Run tests
|
|
run: PATH="./bats/bin:$PATH" test/run
|