mirror of
https://github.com/pyenv/pyenv.git
synced 2024-12-04 04:53:44 -05:00
59acc42647
Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 4. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
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@v4
|
|
- name: Install bats
|
|
run: git clone --depth 1 https://github.com/sstephenson/bats.git
|
|
- name: Run tests
|
|
run: PATH="./bats/bin:$PATH" test/run
|