Skip to content

Commit

Permalink
feat: replace travis with github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
markelog committed Oct 19, 2022
1 parent cedab69 commit 27b2122
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 349 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: CI
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
go-version: [1.19.x]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Run Tests
run: make test
- name: Run Integration Tests
run: make integration-ci
349 changes: 0 additions & 349 deletions .travis.yml

This file was deleted.

1 change: 1 addition & 0 deletions bin/.elm-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
0.17.0
1 change: 1 addition & 0 deletions bin/.ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.1.5

0 comments on commit 27b2122

Please sign in to comment.