Skip to content

Add gradient smoothing for elastic backend #10

Add gradient smoothing for elastic backend

Add gradient smoothing for elastic backend #10

Workflow file for this run

# Run package tests
name: Package tests
on:
push:
branches:
- main
- develop
tags: '*'
pull_request:
branches:
- develop
types:
- ready_for_review
- synchronize
# needed to allow julia-actions/cache to delete old caches that it has created
permissions:
actions: write
contents: read
jobs:
run_tests:
name: Julia ${{ matrix.julia-version }} - ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
if : github.event.pull_request.draft == false
strategy:
matrix:
julia-version: ['1'] #['lts', '1', 'pre']
arch: [x64] #[x64, x86]
os: [ubuntu-latest, macOS-latest] #[ubuntu-latest, windows-latest, macOS-latest]
include:
- os: macOS-latest
julia-version: '1'
arch: aarch64
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.arch }}
- name: Julia cache
if: ${{ !env.ACT }}
uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
# with:
# annotate: true