Skip to content

Update atlas_format.md #7

Update atlas_format.md

Update atlas_format.md #7

Workflow file for this run

name: Test CI
on:
push:
branches: [main, master]
pull_request:
branches: [main, master]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
julia-version: ['1.11', '1']
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.julia-version }}
- name: Cache Julia deps
uses: actions/cache@v4
with:
path: |
~/.julia/artifacts
~/.julia/compiled
~/.julia/environments
~/.julia/packages
key: ${{ runner.os }}-julia-${{ matrix.julia-version }}-${{ hashFiles('Project.toml', 'Manifest.toml') }}
- name: Install dependencies
run: julia --project=. -e 'import Pkg; Pkg.instantiate()'
- name: Run tests
run: julia --project=. -e 'import Pkg; Pkg.test()'