Skip to content

Add downstream tests #1

Add downstream tests

Add downstream tests #1

Workflow file for this run

name: ci
on:
push:
branches:
- main
tags: '*'
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
test:
name: downstream ${{ matrix.package }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
package:
- 'ClimaAtmos'
- 'ClimaLand'
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@v1
- uses: actions/checkout@v4
path: ${{ matrix.package }}

Check failure on line 32 in .github/workflows/downstream.yml

View workflow run for this annotation

GitHub Actions / ci

Invalid workflow file

The workflow is not valid. .github/workflows/downstream.yml (Line: 32, Col: 9): Unexpected value 'path'
- run: |
julia --project=${{ matrix.package }} -e 'using Pkg; Pkg.instantiate()'
julia --project=${{ matrix.package }} -e 'using Pkg; Pkg.test()'