Skip to content

Commit

Permalink
github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
wookay committed Nov 10, 2019
1 parent d996d2b commit 8d41edd
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/actions.yml
Original file line number Diff line number Diff line change
@@ -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"'

0 comments on commit 8d41edd

Please sign in to comment.