Simplify setup of climates #6
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: Metadata and hygene | |
on: | |
push: | |
branches: | |
- main | |
tags: | |
- 'v*' | |
pull_request: | |
workflow_dispatch: | |
permissions: # needed to allow julia-actions/cache to proactively delete old caches that it has created | |
actions: write | |
contents: read | |
jobs: | |
metadata: | |
name: RSMD - ${{ github.event_name }} | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up julia | |
uses: julia-actions/setup-julia@v2 | |
with: | |
version: '1' | |
arch: x64 | |
- name: Cache | |
uses: julia-actions/cache@v2 | |
- name: Build package | |
uses: julia-actions/julia-buildpkg@v1 | |
- name: Running | |
uses: julia-actions/julia-runtest@v1 | |
env: | |
RSMD_CROSSWALK: TRUE |