Skip to content

Bump actions/checkout from 3.6.0 to 4.1.2 #2

Bump actions/checkout from 3.6.0 to 4.1.2

Bump actions/checkout from 3.6.0 to 4.1.2 #2

Workflow file for this run

name: CI
on:
merge_group:
pull_request:
push:
branches:
- master
tags:
- '*'
concurrency:
# Skip intermediate builds: all builds except for builds on the `master` branch
# Cancel intermediate builds: only pull request builds
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.ref != 'refs/heads/master' || github.run_number }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
permissions:
contents: read
jobs:
finalize:
timeout-minutes: 10
needs: [test]
if: always()
runs-on: [based-on-debian, self-hosted, linux, x64]
steps:
- run: |
echo test: ${{ needs.test.result }}
- run: exit 1
if: |
(needs.test.result != 'success')
test:
env:
JULIA_PKG_SERVER: ${{ secrets.JULIA_PKG_SERVER }}
runs-on: ${{ matrix.os }}
timeout-minutes: 60
strategy:
matrix:
version:
- '1'
os:
- [based-on-debian, self-hosted, linux, x64]
- [windows, x64, inside-docker, self-hosted]
arch:
- x64
steps:
- uses: actions/checkout@9bb56186c3b09b4f86b1c65136769dd318469633
with:
persist-credentials: false
- uses: julia-actions/setup-julia@f40c4b69330df1d22e7590c12e76dc2f9c66e0bc
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: PumasAI/add-private-registry@9e7f77818be0d19044e5e752205b6ded86af2cb8
with:
juliahub_token_encoded: ${{ secrets.JULIAPRO_TOKEN_ENCODED }}
private_registry_name: ${{ secrets.PUMASREGISTRY_NAME }}
private_registry_uuid: ${{ secrets.PUMASREGISTRY_UUID }}
- uses: julia-actions/julia-buildpkg@00f9fd6b2600be0a8d80566dd4d4d2389b3468eb
- uses: julia-actions/julia-runtest@79a7e100883947123f8263c5f06e6c0ea3eb972f