Skip to content

Commit

Permalink
Move file to where it's expected
Browse files Browse the repository at this point in the history
  • Loading branch information
paulo-ferraz-oliveira committed Jan 7, 2021
1 parent 2da6029 commit 8fe2331
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 25 deletions.
24 changes: 0 additions & 24 deletions .github/workflows/ci.yml

This file was deleted.

25 changes: 24 additions & 1 deletion .github/workflows/erlang.yml
Original file line number Diff line number Diff line change
@@ -1 +1,24 @@

---
name: build
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
ci:
name: Run checks and tests over ${{matrix.otp_vsn}} and ${{matrix.os}}
runs-on: ${{matrix.os}}
container:
image: erlang:${{matrix.otp_vsn}}
strategy:
matrix:
otp_vsn: [19.3, 20.3, 21.0, 22.0]
os: [ubuntu-latest]
steps:
- uses: actions/checkout@v2
- run: rebar3 --version
- run: rebar3 eunit
- run: '[[ 0 -eq $(git --no-pager diff | wc -l) ]]'

0 comments on commit 8fe2331

Please sign in to comment.