Skip to content

Commit

Permalink
Remove .travis.yml, add Github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
uwiger committed Feb 17, 2024
1 parent 50b2c68 commit f0d092e
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 13 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Exometer CI

on: [pull_request, push]

jobs:
linux:
name: Test on OTP ${{ matrix.otp_version }} and ${{ matrix.os }}
runs-on: ${{ matrix.os }}

strategy:
matrix:
otp_version: [24, 25, 26]
os: [ubuntu-latest]

container:
image: erlang:${{ matrix.otp_version }}

steps:
- uses: actions/checkout@v4
- name: CI tests
- run: make ci
- shell: bash
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

0 comments on commit f0d092e

Please sign in to comment.