diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml deleted file mode 100644 index fcf2846..0000000 --- a/.github/workflows/CI.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: CI -on: - - push - - pull_request -jobs: - test: - name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - version: - - '1.7' - - 'nightly' - os: - - ubuntu-latest - arch: - - x64 - steps: - - uses: actions/checkout@v2 - - uses: julia-actions/setup-julia@v1 - with: - version: ${{ matrix.version }} - arch: ${{ matrix.arch }} - - uses: actions/cache@v1 - env: - cache-name: cache-artifacts - with: - path: ~/.julia/artifacts - key: ${{ runner.os }}-test-${{ env.cache-name }}-${{ hashFiles('**/Project.toml') }} - restore-keys: | - ${{ runner.os }}-test-${{ env.cache-name }}- - ${{ runner.os }}-test- - ${{ runner.os }}- - - uses: julia-actions/julia-buildpkg@v1 - - uses: julia-actions/julia-runtest@v1 - - uses: julia-actions/julia-processcoverage@v1 - - uses: codecov/codecov-action@v1 - with: - file: lcov.info diff --git a/README.md b/README.md index 1b795cf..ebb00e2 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ GaussianMixtures ======================== A Julia package for Gaussian Mixture Models (GMMs). ---------- -[![Build Status](https://travis-ci.org/davidavdav/GaussianMixtures.jl.svg?branch=master)](https://travis-ci.org/davidavdav/GaussianMixtures.jl) +[![Unit test](https://github.com/davidavdav/GaussianMixtures.jl/actions/workflows/test.yml/badge.svg)](https://github.com/davidavdav/GaussianMixtures.jl/actions/workflows/test.yml) This package contains support for Gaussian Mixture Models. Basic training, likelihood calculation, model adaptation, and i/o are implemented.