Remove Meshes.jl and bump Julia min version #21
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |