Skip to content

Commit

Permalink
Merge branch 'master' into dominators
Browse files Browse the repository at this point in the history
  • Loading branch information
james-d-mitchell authored Nov 18, 2020
2 parents 1f1b2ad + 95f498c commit c50eb49
Show file tree
Hide file tree
Showing 26 changed files with 589 additions and 234 deletions.
15 changes: 15 additions & 0 deletions .codecov.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
coverage:
precision: 2 # Report coverage to 2 decimal places
round: down # Round down
range: "90...100" # Anything below 90% is coloured red (considered bad)
status: # Various customisations that it seems should be off
project: off
patch: off
changes: off

comment:
layout: "header, diff, changes, tree"
behavior: default

ignore:
- "extern" # Do not check coverage on the extern directory
32 changes: 32 additions & 0 deletions .github/workflows/GAP.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: "GAP tests"

# Trigger the workflow on push or pull request
on:
- push
- pull_request

jobs:
test:
name: "GAP ${{ matrix.gap-branch }} on ${{ matrix.os }}"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
digraphs-lib:
- digraphs-lib-0.6
gap-branch:
- master
- stable-4.11

steps:
- uses: actions/checkout@v2
- uses: gap-actions/setup-gap-for-packages@v1
with:
GAP_PKGS_TO_CLONE: "NautyTracesInterface"
GAP_PKGS_TO_BUILD: "io orb profiling grape NautyTracesInterface datastructures"
GAPBRANCH: ${{ matrix.gap-branch }}
- name: "Install digraphs-lib"
run: curl --retry 5 -L -O https://digraphs.github.io/Digraphs/${{ matrix.digraphs-lib }}.tar.gz
&& tar xf ${{ matrix.digraphs-lib }}.tar.gz
- uses: gap-actions/run-test-for-packages@v1
13 changes: 13 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
name: CI
on: [pull_request]

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: "Install dependencies . . ."
run: |
sudo pip install gaplint cpplint
- name: "Run gaplint + cpplint . . ."
run: bash etc/lint.sh
120 changes: 0 additions & 120 deletions .travis.yml

This file was deleted.

Loading

0 comments on commit c50eb49

Please sign in to comment.