Skip to content

Commit

Permalink
Merge branch 'master' of github.com:BioJulia/KmerAnalysis.jl
Browse files Browse the repository at this point in the history
  • Loading branch information
Ben J. Ward committed Jun 26, 2020
2 parents 415952e + 4a91fc8 commit c624a4f
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 58 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/UnitTesting.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Unit tests

on:
- push
- pull_request

jobs:
test:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
julia-version:
- '1.0' # LTS
- '1'
julia-arch: [x86]
os: [ubuntu-latest, windows-latest, macOS-latest]
experimental: [false]
include:
- julia-version: nightly
julia-arch: x86
os: ubuntu-latest
experimental: true

steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Julia
uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.julia-version }}
- name: Run Tests
uses: julia-actions/julia-runtest@latest
- name: Create CodeCov
uses: julia-actions/julia-processcoverage@v1
- name: Upload CodeCov
uses: codecov/codecov-action@v1
with:
file: ./lcov.info
flags: unittests
name: codecov-umbrella
fail_ci_if_error: false
token: ${{ secrets.CODECOV_TOKEN }}
45 changes: 0 additions & 45 deletions .travis.yml

This file was deleted.

4 changes: 2 additions & 2 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "KmerAnalysis"
uuid = "a20136b7-8e32-4c10-91d3-7060c0bd8ec7"
authors = ["Ben J. Ward <[email protected]>"]
version = "0.2.0"
version = "0.3.0"

[deps]
BioSequences = "7e6ae17a-c86d-528c-b3b9-7f778a29fe59"
Expand All @@ -11,7 +11,7 @@ ReadDatastores = "70a005b8-9d8a-11e9-0d98-c909fa2e52d2"
[compat]
BioSequences = "2"
ReadDatastores = "0.3, 0.4"
julia = "1.3"
julia = "1"

[extras]
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
Expand Down
2 changes: 0 additions & 2 deletions coverage/Project.toml

This file was deleted.

9 changes: 0 additions & 9 deletions coverage/coverage.jl

This file was deleted.

0 comments on commit c624a4f

Please sign in to comment.