diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml new file mode 100644 index 0000000..48b82c5 --- /dev/null +++ b/.github/workflows/actions.yml @@ -0,0 +1,20 @@ +name: CI + +on: [pull_request, push] + +jobs: + build: + runs-on: ${{ matrix.os }} + strategy: + matrix: + julia-version: [1.1.0] + julia-arch: [x64] + os: [ubuntu-latest] + steps: + - uses: actions/checkout@master + - uses: julia-actions/setup-julia@latest + with: + version: ${{ matrix.julia-version }} + - name: runtests + run: | + julia --color=yes --project -e 'using Pkg; pkg"test"'