Skip to content

Commit

Permalink
Merge pull request #42 from internetee/41-replace-travis-with-github-…
Browse files Browse the repository at this point in the history
…actions

Add Github Actions support
  • Loading branch information
vohmar authored Jan 26, 2021
2 parents 631af0e + b8deb7d commit 1ff9e87
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 17 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/erlang.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Erlang CI

on: [push]

jobs:
test:
runs-on: ubuntu-latest
name: OTP ${{matrix.otp}}
strategy:
matrix:
otp: [21.3.8]
ruby: [2.6.3]
steps:
- uses: actions/[email protected]
- uses: gleam-lang/[email protected]
with:
otp-version: ${{matrix.otp}}
- uses: ruby/setup-ruby@v1
with:
ruby-version: ${{ matrix.ruby }}
bundler-cache: true # runs 'bundle install' and caches installed gems automatically

- name: Install rebar dependencies
run: rebar3 as test get-deps

- name: Integrated Ruby app setup
run: |
rebar3 as test get-deps
/bin/bash -l -c "cd apps/epp_proxy/priv/test_backend_app && bundle install"
- name: Run tests
run: |
/bin/bash -l -c "cd apps/epp_proxy/priv/test_backend_app && bundle exec rackup --pid pidfile -D"
rebar3 as test compile
DEBUG=1 rebar3 ct --sys_config config/test.config --readable=false --cover --verbose=true
rebar3 cover --verbose
# - run: rebar3 eunit
17 changes: 0 additions & 17 deletions .travis.yml

This file was deleted.

0 comments on commit 1ff9e87

Please sign in to comment.