dependabot-preview[bot] 5192f9b853 [Security] Bump acorn from 5.7.3 to 5.7.4
Bumps [acorn](https://github.com/acornjs/acorn) from 5.7.3 to 5.7.4. **This update includes a security fix.**
- [Release notes](https://github.com/acornjs/acorn/releases)
- [Commits](https://github.com/acornjs/acorn/compare/5.7.3...5.7.4)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2020-03-15 15:15:45 +01: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
2020-02-26 22:38:46 +01:00
2020-02-26 22:38:46 +01:00
2019-09-14 21:04:24 -07:00
2020-02-26 22:38:46 +01:00
2019-09-14 20:52:51 -07:00
2019-09-15 09:13:41 -07:00
2019-09-15 09:13:49 -07:00
2020-02-11 18:21:02 +01:00
2019-09-14 20:52:51 -07:00

julia-runtest Action

This action runs the tests in a Julia package.

Usage

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

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: ['1', '1.0']
        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@latest
        with:
          version: ${{ matrix.julia-version }}
      - uses: julia-actions/julia-runtest@master
Description
This action runs the tests in a Julia package.
Readme MIT 17 MiB
Languages
Julia 100%