diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 00000000..20eec0e0 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,19 @@ +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 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 00000000..0fb735a2 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,16 @@ +name: Release +on: + push: + tags: 'v*' + +jobs: + homebrew: + name: Bump Homebrew formula + runs-on: ubuntu-latest + steps: + - uses: mislav/bump-homebrew-formula-action@v1.4 + if: "!contains(github.ref, '-')" # skip prereleases + with: + formula-name: rbenv + env: + COMMITTER_TOKEN: ${{ secrets.COMMITTER_TOKEN }} diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index acc69ef2..00000000 --- a/.travis.yml +++ /dev/null @@ -1,7 +0,0 @@ -sudo: false -install: git clone --depth 1 https://github.com/sstephenson/bats.git -script: PATH="./bats/bin:$PATH" test/run -language: c -env: - - RBENV_NATIVE_EXT= - - RBENV_NATIVE_EXT=1