Skip to content

Update dependency eslint to v10.9.1 #514

Update dependency eslint to v10.9.1

Update dependency eslint to v10.9.1 #514

Workflow file for this run

name: tagcheck
# This CI file just checks that the latest tagged release of this
# action (julia-actions/install-juliaup) runs without error.
#
# This CI file does NOT test the code that is on the currently
# checked-out branch. It only runs the code in the latest tagged
# release of this repo.
on:
pull_request:
push:
branches:
- main
tags: '*'
# merge_group: # GitHub merge queue
concurrency:
# Skip intermediate builds: all builds except for builds on the `main` branch
# Cancel intermediate builds: only pull request builds
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.ref != 'refs/heads/main' || github.run_number }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
permissions:
contents: read
jobs:
tagcheck-convenience:
timeout-minutes: 10
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os:
- ubuntu-latest
steps:
# Note: if/when we release v3 of this action,
# change the following line from v2 to v3:
- uses: julia-actions/install-juliaup@v3
with:
channel: '1'
- run: julia --version
- run: julia -e 'import InteractiveUtils; InteractiveUtils.versioninfo()'