Skip to content

Remove Meshes.jl and bump Julia min version #21

Remove Meshes.jl and bump Julia min version

Remove Meshes.jl and bump Julia min version #21

Workflow file for this run

name: Run tests
on:
- push
- pull_request
jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version: ['1', '1.9']
architecture: [x64]
os: [ubuntu-latest]
python-version: ['3.9']
steps:
- name: Setup python
uses: actions/[email protected]
with:
python-version: ${{ matrix.python-version }}
architecture: ${{ matrix.architecture }}
- run: python -m pip install --user matplotlib
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.architecture }}
- uses: julia-actions/julia-buildpkg@v1
env:
PYTHON: python
- uses: julia-actions/julia-runtest@v1