JuliaNightly #157
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: JuliaNightly | |
# Nightly Scheduled Julia Nightly Run | |
on: | |
schedule: | |
- cron: '0 1 * * 0' # Weekly at 1 AM UTC Sunday | |
workflow_dispatch: | |
jobs: | |
test: | |
name: Julia Nightly - Ubuntu - x64 | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
- name: Set up julia | |
uses: julia-actions/setup-julia@v2 | |
with: | |
version: nightly | |
arch: x64 | |
- name: Build package | |
uses: julia-actions/julia-buildpkg@v1 | |
with: | |
ignore-no-cache: true | |
- name: Run tests | |
uses: julia-actions/julia-runtest@v1 |