Skip to content

feat: add trig_to_exp(f::BasicSymbolic) #84

feat: add trig_to_exp(f::BasicSymbolic)

feat: add trig_to_exp(f::BasicSymbolic) #84

Workflow file for this run

name: Downgrade
on:
push:
branches:
- 'main'
pull_request:
branches:
- 'main'
paths:
- '.github/workflows/downgrade.yml'
- 'src/**'
- 'ext/**'
- 'test/**'
- 'Project.toml'
types:
- opened
- reopened
- synchronize
- ready_for_review
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }}
runs-on: ${{ matrix.os }}
timeout-minutes: 60
permissions: # needed to allow julia-actions/cache to proactively delete old caches that it has created
actions: write
contents: read
strategy:
matrix:
version:
- 'min'
os:
- ubuntu-latest
arch:
- x64
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
- uses: julia-actions/setup-julia@v2
with:
show-versioninfo: true
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/julia-downgrade-compat@v1
with:
skip: Pkg,TOML
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1