mirror of
https://github.com/ANL-CEEESA/RELOG.git
synced 2025-12-06 07:48:50 -06:00
26 lines
618 B
YAML
26 lines
618 B
YAML
name: Build & Test
|
|
on:
|
|
push:
|
|
pull_request:
|
|
schedule:
|
|
- cron: '45 10 * * *'
|
|
jobs:
|
|
test:
|
|
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
matrix:
|
|
version: ['1.3', '1.4', '1.5', '1.6']
|
|
os:
|
|
- ubuntu-latest
|
|
arch:
|
|
- x64
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
- uses: julia-actions/setup-julia@v1
|
|
with:
|
|
version: ${{ matrix.version }}
|
|
arch: ${{ matrix.arch }}
|
|
- uses: julia-actions/julia-buildpkg@v1
|
|
- uses: julia-actions/julia-runtest@v1
|