Skip to content

Refactor timestep! interface to improve flexibility #363

Refactor timestep! interface to improve flexibility

Refactor timestep! interface to improve flexibility #363

Workflow file for this run

name: Enzyme CI
on:
pull_request:
branches:
- main
push:
branches:
- main
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
version:
- '1.10'
os:
- ubuntu-latest
arch:
- x64
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
with:
test_args: 'enzyme'
env:
GITHUB_AUTH: ${{ secrets.GITHUB_TOKEN }}