Skip to content

fix halo (still overshoot but no OOB) #34

fix halo (still overshoot but no OOB)

fix halo (still overshoot but no OOB) #34

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }}
runs-on: ${{ matrix.os }}
env:
DEVITO_ARCH: gcc
DEVITO_LANGUAGE: "openmp"
DEVITO_LOGGING: "ERROR"
OMP_NUM_THREADS: 2
strategy:
fail-fast: false
matrix:
version: ['1', 'lts', '1.11', '1.12']
os: [ubuntu-latest]
steps:
- name: Checkout ImageGather.jl
uses: actions/checkout@v4
- name: Setup julia
uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
- name: Build ImageGather.jl
uses: julia-actions/julia-buildpkg@latest
- name: Run tests
id: test
uses: julia-actions/julia-runtest@latest