SPICE #519
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: SPICE | |
on: | |
schedule: | |
- cron: "0 4 * * *" | |
workflow_dispatch: | |
jobs: | |
auto: | |
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{github.event_name }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: true | |
matrix: | |
version: | |
- "1" | |
os: | |
- ubuntu-latest | |
arch: | |
- x64 | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: julia-actions/setup-julia@v1 | |
with: | |
version: ${{ matrix.version }} | |
arch: ${{ matrix.arch }} | |
- uses: actions/cache@v1 | |
env: | |
cache-name: cache-julia-depot | |
with: | |
path: ~/.julia | |
key: ${{ runner.os }}-auto-${{ env.cache-name }}-${{hashFiles('**/Project.toml') }} | |
restore-keys: | | |
${{ runner.os }}-auto-${{ env.cache-name }}- | |
${{ runner.os }}-auto- | |
${{ runner.os }}- | |
- name: Run Regression | |
working-directory: lib/SPICEKernels/gen | |
run: make | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v5 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
title: NASA Generic Kernel Updates | |
body: This PR was [automatically](https://github.com/JuliaAstro/SPICEKernels.jl/blob/main/.github/workflows/SPICE.yml) generated because the generic kernel files on <nasa.gov> have changed. |