Skip to content

Commit

Permalink
Migrated from Travis CI to Github Actions (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
predatorray committed Nov 6, 2022
1 parent d8d9b37 commit c0f7062
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 33 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: CI

on:
workflow_dispatch:
push:
branches:
- master
pull_request:
branches:
- master

jobs:
build:
name: build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install minikube
uses: medyagh/setup-minikube@master
with:
driver: none
- name: Install Bats
run: |
set -ex
git clone https://github.com/bats-core/bats-core.git
cd bats-core
sudo ./install.sh /usr/local
- name: Make
run: |
set -ex
export PATH="$(pwd)/bin:$PATH"
make
33 changes: 0 additions & 33 deletions .travis.yml

This file was deleted.

0 comments on commit c0f7062

Please sign in to comment.