Skip to content

Commit

Permalink
Add unit tests CI
Browse files Browse the repository at this point in the history
  • Loading branch information
jakobnissen committed Oct 13, 2023
1 parent 46de534 commit 6b0d6f7
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/UnitTests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Unit tests

on:
- push
- pull_request

jobs:
test:
runs-on: ${{ matrix.os }}
continue-on-error: ${{ matrix.experimental }}
strategy:
fail-fast: false
matrix:
julia-version:
- '1.8'
- '1'
julia-arch: [x86]
os: [ubuntu-latest, windows-latest, macOS-latest]
experimental: [false]
include:
- julia-version: nightly
julia-arch: x86
os: ubuntu-latest
experimental: true

steps:
- name: Checkout Repository
uses: actions/checkout@v2
- name: Setup Julia
uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.julia-version }}
- name: Run Tests
uses: julia-actions/julia-runtest@latest

0 comments on commit 6b0d6f7

Please sign in to comment.