Skip to content

Commit

Permalink
[MERGE] branch 'detached-hotfix-path-1'
Browse files Browse the repository at this point in the history
[TESTS] Fix for GH issue #1 (travis-ci paywall bypass)
  • Loading branch information
reactive-firewall committed Jan 18, 2022
2 parents fb4922c + f82286c commit d7a8ea5
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 8 deletions.
28 changes: 23 additions & 5 deletions .github/workflows/Tests.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,38 @@
name: CI

on: [push]

jobs:
MATS:

runs-on: ubuntu-latest

runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
env:
OS: ${{ matrix.os }}
PYTHON: '3.9'
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@master
- name: Setup Python
uses: actions/setup-python@master
with:
python-version: 3.9
- name: Pre-Clean
run: make -j1 -f Makefile clean || true ;
- name: Run Tests
run: |
echo Testing M.A.T.s,
make -j1 -f Makefile test || true
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v2
with:
directory: ./coverage/reports/
env_vars: OS,PYTHON
fail_ci_if_error: true
files: ./coverage1.xml,./coverage2.xml
flags: unittests
name: codecov-umbrella
path_to_write_report: ./coverage/codecov_report.txt
verbose: true
- name: Post-Clean
run: make -j1 -f Makefile clean || true ;

Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,11 @@ concurently without individual conections for each node pair.

# CI (WIP):

Continuous integration testing is handeled by Travis CI Service and Circle-CI Service.
Continuous integration testing is handeled by Circle-CI Service.

## Status

### master:
[![Status](https://travis-ci.org/reactive-firewall/multicast.svg?branch=master)](https://travis-ci.org/reactive-firewall/multicast)
[![CircleCI](https://circleci.com/gh/reactive-firewall/multicast/tree/master.svg?style=svg)](https://circleci.com/gh/reactive-firewall/multicast/tree/master)
[![Appveyor](https://ci.appveyor.com/api/projects/status/??????/branch/master?svg=true)](https://ci.appveyor.com/project/reactive-firewall/multicast/branch/master)
[![Test Coverage](https://api.codeclimate.com/v1/badges/?????/test_coverage)](https://codeclimate.com/github/reactive-firewall/multicast/test_coverage)
Expand All @@ -26,7 +25,6 @@ Continuous integration testing is handeled by Travis CI Service and Circle-CI Se
![Commits-since](https://img.shields.io/github/commits-since/reactive-firewall/multicast/stable.svg?maxAge=9000)

### Stable:
[![Stable-Status](https://travis-ci.org/reactive-firewall/multicast.svg?branch=stable)](https://travis-ci.org/reactive-firewall/multicast)
[![Stable-CircleCI](https://circleci.com/gh/reactive-firewall/multicast/tree/stable.svg?style=svg)](https://circleci.com/gh/reactive-firewall/multicast/tree/stable)
[![Atable-Appveyor](https://ci.appveyor.com/api/projects/status/????/branch/stable?svg=true)](https://ci.appveyor.com/project/reactive-firewall/multicast/branch/stable)
[![stable-code-coverage](https://codecov.io/gh/reactive-firewall/multicast/branch/stable/graph/badge.svg)](https://codecov.io/gh/reactive-firewall/multicast/branch/stable/)
Expand Down

0 comments on commit d7a8ea5

Please sign in to comment.