Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: CI

on:
push:
branches: [master]
pull_request:

jobs:
test:
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
otp: ['24.3', '25.3', '26.2']
steps:
- uses: actions/checkout@v4
- uses: erlef/setup-beam@v1
with:
otp-version: ${{ matrix.otp }}
rebar3-version: '3.22.1'
- run: rebar3 compile
- run: rebar3 eunit
5 changes: 0 additions & 5 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[![Build Status](https://travis-ci.org/GameAnalytics/statman.svg?branch=master)](https://travis-ci.org/GameAnalytics/statman)
[![CI](https://github.com/GameAnalytics/statman/actions/workflows/ci.yml/badge.svg)](https://github.com/GameAnalytics/statman/actions/workflows/ci.yml)
# statman - Statistics man to the rescue!

Statman makes it possible to instrument and collect statistics from
Expand Down
Loading