mirror of
https://github.com/rbenv/ruby-build.git
synced 2025-01-01 14:44:48 +01:00
Split macOS test to GitHub Actions. Because Travis CI add a rate-limit for OSS project
This commit is contained in:
parent
01d9e8a9b5
commit
cbc0ddc7db
2 changed files with 11 additions and 3 deletions
11
.github/workflows/ci.yml
vendored
Normal file
11
.github/workflows/ci.yml
vendored
Normal file
|
@ -0,0 +1,11 @@
|
|||
name: test with macos
|
||||
|
||||
on: [push, pull_request]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: macos-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- run: git clone --depth 1 https://github.com/sstephenson/bats.git
|
||||
- run: PATH="./bats/bin:$PATH" script/test
|
|
@ -1,7 +1,4 @@
|
|||
sudo: false
|
||||
os:
|
||||
- osx
|
||||
- linux
|
||||
install: git clone --depth 1 https://github.com/sstephenson/bats.git
|
||||
script: PATH="./bats/bin:$PATH" script/test
|
||||
language: c
|
||||
|
|
Loading…
Reference in a new issue