Skip to content

CI: Added 1.9 and 1.10 to the list of tested Julia versions #23

CI: Added 1.9 and 1.10 to the list of tested Julia versions

CI: Added 1.9 and 1.10 to the list of tested Julia versions #23

Workflow file for this run

name: CI
on:
push:
branches:
- master
- ci
pull_request:
branches:
- master
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ github.event_name }}
runs-on: ubuntu-22.04
strategy:
fail-fast: false
matrix:
version:
- '1.5'
- '1.6'
- '1.7'
- '1.8'
- '1.9'
- '1.10'
steps:
- uses: actions/checkout@v3
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1