Skip to content

Commit

Permalink
Merge pull request #78 from mhvk/move-testing-to-workflows
Browse files Browse the repository at this point in the history
Move testing to github actions
  • Loading branch information
mhvk authored Feb 6, 2021
2 parents 74ca988 + 56e1cc3 commit 7252703
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 13 deletions.
41 changes: 41 additions & 0 deletions .github/workflows/ci_workflows.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: CI

on:
push:
branches:
- master
tags:
- '*'
pull_request:

jobs:
tests:
name: ${{ matrix.name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- name: linux (with gcc)
os: ubuntu-latest

- name: MacOS (with clang)
os: macos-latest

steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Install dependencies
if: contains(matrix.os, 'macos')
run: brew install autoconf automake libtool
- name: bootstrap
run: ./bootstrap.sh
- name: configure
run: ./configure --disable-shared
- name: make
run: make
- name: make check
run: make check
- name: make distcheck
run: make distcheck
13 changes: 0 additions & 13 deletions .travis.yml

This file was deleted.

0 comments on commit 7252703

Please sign in to comment.