Skip to content

Commit b00eed3

Browse files
committed
move to github actions
1 parent bc2c45f commit b00eed3

File tree

5 files changed

+60
-65
lines changed

5 files changed

+60
-65
lines changed

.codecov.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/workflows/CI.yml

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
name: CI
2+
3+
# Run on master, tags, or any pull request
4+
on:
5+
push:
6+
branches: [master]
7+
tags: ["*"]
8+
pull_request:
9+
10+
jobs:
11+
12+
# unit tests with coverage
13+
test:
14+
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
15+
runs-on: ${{ matrix.os }}
16+
strategy:
17+
fail-fast: false
18+
matrix:
19+
version:
20+
- "1.0" # minimum version
21+
- "1" # Latest Release
22+
os:
23+
- ubuntu-latest
24+
arch:
25+
- x64
26+
steps:
27+
28+
# check out the project and install Julia
29+
- uses: actions/checkout@v2
30+
- uses: julia-actions/setup-julia@v1
31+
with:
32+
version: ${{ matrix.version }}
33+
arch: ${{ matrix.arch }}
34+
35+
# using a cache can speed up execution times
36+
- uses: actions/cache@v2
37+
env:
38+
cache-name: cache-artifacts
39+
with:
40+
path: ~/.julia/artifacts
41+
key: ${{ runner.os }}-${{ matrix.arch }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }}
42+
restore-keys: |
43+
${{ runner.os }}-${{ matrix.arch }}-test-${{ env.cache-name }}-
44+
${{ runner.os }}-${{ matrix.arch }}-test-
45+
${{ runner.os }}-${{ matrix.arch }}-
46+
${{ runner.os }}-
47+
# build the depencies, run the tests, and upload coverage results
48+
- uses: julia-actions/julia-buildpkg@latest
49+
- run: |
50+
git config --global user.name Tester
51+
git config --global user.email te@st.er
52+
- name: Run Tests
53+
uses: julia-actions/julia-runtest@latest
54+
- uses: julia-actions/julia-processcoverage@v1
55+
- uses: codecov/codecov-action@v1
56+
with:
57+
file: ./lcov.info
58+
flags: unittests
59+
name: codecov-umbrella

.travis.yml

Lines changed: 0 additions & 15 deletions
This file was deleted.

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
CUDD.jl
22
=======
33

4-
[![Build Status](https://travis-ci.org/sisl/CUDD.jl.svg)](https://travis-ci.org/sisl/CUDD.jl)
5-
[![Coverage Status](https://coveralls.io/repos/github/sisl/CUDD.jl/badge.svg?branch=master)](https://coveralls.io/github/sisl/CUDD.jl?branch=master)
4+
[![Build Status](https://github.com/sisl/CUDD.jl/workflows/CI/badge.svg)](https://github.com/sisl/CUDD.jl/actions)
65
[![codecov](https://codecov.io/gh/sisl/CUDD.jl/branch/master/graph/badge.svg?token=HE8R1IljBV)](https://codecov.io/gh/sisl/CUDD.jl)
76

87
A Julia wrapper for the [CUDD](https://github.com/ivmai/cudd)

appveyor.yml

Lines changed: 0 additions & 47 deletions
This file was deleted.

0 commit comments

Comments
 (0)