Skip to content

Commit

Permalink
adding test action
Browse files Browse the repository at this point in the history
  • Loading branch information
michel2323 committed Sep 25, 2020
1 parent 52a555b commit 7286bae
Showing 1 changed file with 24 additions and 6 deletions.
30 changes: 24 additions & 6 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,24 @@
steps:
- uses: actions/[email protected]
- uses: julia-actions/setup-julia@v1
with:
version: 1.5.2
- run: julia -e 'println("Hello, World!")'
name: Run tests

on: [push, pull_request]

jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: ['1.5']
julia-arch: [x64]
os: [ubuntu-latest]

steps:
- uses: actions/[email protected]
- uses: julia-actions/setup-julia@v1
with:
version: 1.5.2
- uses: actions/checkout@v2
- uses: julia-actions/setup-julia@latest
with:
version: ${{ matrix.julia-version }}
- uses: julia-actions/julia-buildpkg@latest
- uses: julia-actions/julia-runtest@latest

0 comments on commit 7286bae

Please sign in to comment.