David Anthoff f6886b61fb Update README
2019-09-15 21:00:55 -07:00
2019-09-14 20:52:51 -07:00
2019-09-14 20:52:51 -07:00
2019-09-14 20:52:51 -07:00
2019-09-15 17:54:55 -07:00
2019-09-14 21:05:22 -07:00
2019-09-15 17:54:55 -07:00
2019-09-14 21:04:24 -07:00
2019-09-14 21:03:29 -07:00
2019-09-14 20:52:51 -07:00
2019-09-15 09:13:41 -07:00
2019-09-14 21:05:22 -07:00
2019-09-15 09:13:49 -07:00
2019-09-15 21:00:55 -07:00
2019-09-14 20:52:51 -07:00

julia-runtest Action

This action runs the tests in a Julia package and uploads coverage results to Coveralls and Codecov.

Usage

Julia needs to be installed before this action can run. This can easily be achieved with the setup-julia action.

This action accepts two inpus: codecov (with values true or false) and coveralls (with values true or false). These inputs control whether coverage results are automatically uploaded to the respective service. Both inputs have a default value of true.

Uploads to Coveralls or Codecov only work if an upload token for the respective service is stored as a Github Actions secret and made available to the action. These tokens need to be stored in the environment variables CODECOV_TOKEN and COVERALLS_TOKEN.

And example workflow that uses this action might look like this:

name: Run tests

on: [push, pull_request]

jobs:
  test:
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        julia-version: [stable, lts]
        julia-arch: [x64, x86]
        os: [ubuntu-latest, windows-latest, macOS-latest]
        exclude:
          - os: macOS-latest
            julia-arch: x86

    steps:
      - uses: actions/checkout@v1.0.0
      - uses: julia-actions/setup-julia@v0.2
        with:
          version: ${{ matrix.julia-version }}
      - uses: julia-actions/julia-runtest@master
        env:
          CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
          COVERALLS_TOKEN: ${{ secrets.COVERALLS_TOKEN }}
Description
This action runs the tests in a Julia package.
Readme MIT 17 MiB
Languages
Julia 100%