Skip to content

Commit

Permalink
Add GitHub Actions (#39)
Browse files Browse the repository at this point in the history
  • Loading branch information
vkatsuba authored Nov 2, 2022
1 parent 8442835 commit ffc47e4
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 12 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: CI

on:
push:
pull_request:
branches: [ $default-branch ]
release:
types:
- created

jobs:
test:
name: "Erlang Test"
runs-on: ubuntu-latest
strategy:
matrix:
otp: [21, 22, 23, 24]
fail-fast: false
container:
image: erlang:${{ matrix.otp }}
steps:
- uses: actions/checkout@v3
- name: Test
run: make ci
12 changes: 0 additions & 12 deletions .travis.yml

This file was deleted.

0 comments on commit ffc47e4

Please sign in to comment.