Skip to content

Commit

Permalink
chore: Switch to GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
nwoltman committed Jul 10, 2024
1 parent 0cca585 commit c87a416
Show file tree
Hide file tree
Showing 2 changed files with 32 additions and 19 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: CI

on: [push, pull_request]

jobs:
test:
strategy:
matrix:
config:
- {
os: ubuntu-latest,
cxx: g++,
}
- {
os: ubuntu-latest,
cxx: clang++,
}
- {
os: macos-latest,
cxx: clang++,
}
name: Test - ${{ matrix.config.os }}/${{ matrix.config.cxx }}
runs-on: ${{ matrix.config.os }}
steps:
- uses: actions/checkout@v4
- name: Build Binary
env:
CXX: ${{ matrix.config.cxx }}
run: make
- name: Run Tests
if: startsWith(matrix.config.os, 'macos')
run: make test
19 changes: 0 additions & 19 deletions .travis.yml

This file was deleted.

0 comments on commit c87a416

Please sign in to comment.