Skip to content

Update GHA

Update GHA #941

Workflow file for this run

name: Unit Tests
on:
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
# Needed to allow julia-actions/cache to delete old caches that it has created
permissions:
actions: write
contents: read
jobs:
test-os:
timeout-minutes: 120
strategy:
matrix:
julia-version: ['1.10']
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
uses: julia-actions/cache@v1

Check failure on line 28 in .github/workflows/UnitTests.yml

View workflow run for this annotation

GitHub Actions / Unit Tests

Invalid workflow file

The workflow is not valid. .github/workflows/UnitTests.yml (Line: 28, Col: 7): 'uses' is already defined
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.julia-version }}
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1