mirror of
https://github.com/pyenv/pyenv.git
synced 2024-11-14 20:39:55 -05:00
20 lines
438 B
YAML
20 lines
438 B
YAML
|
name: CI
|
||
|
on: [push]
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: ${{ matrix.os }}
|
||
|
strategy:
|
||
|
matrix:
|
||
|
native_ext: ['', '1']
|
||
|
os: [ubuntu-latest, macOS-latest]
|
||
|
|
||
|
steps:
|
||
|
- uses: actions/checkout@v1
|
||
|
- name: Install bats
|
||
|
run: git clone --depth 1 https://github.com/sstephenson/bats.git
|
||
|
- name: Run tests
|
||
|
env:
|
||
|
RBENV_NATIVE_EXT: ${{ matrix.native_ext }}
|
||
|
run: PATH="./bats/bin:$PATH" test/run
|