Merge pull request #1407 from CliMA/cc/v1_3_6_release #2365
Workflow file for this run
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: UpDeps | |
on: | |
push: | |
tags: '*' | |
pull_request: | |
jobs: | |
update_deps: | |
runs-on: ubuntu-latest | |
timeout-minutes: 30 | |
steps: | |
- name: Cancel Previous Runs | |
uses: styfle/cancel-workflow-action@0.4.0 | |
with: | |
access_token: ${{ github.token }} | |
- uses: actions/checkout@v2.2.0 | |
- uses: julia-actions/setup-julia@latest | |
with: | |
version: 1.10.0 | |
- name: Apply UpDeps | |
run: | | |
julia --project .dev/up_deps.jl . | |
- name: Check Manifest diff | |
run: | | |
git diff --color=always --exit-code |