Skip to content

Bump actions/checkout from 6 to 7 #25

Bump actions/checkout from 6 to 7

Bump actions/checkout from 6 to 7 #25

Workflow file for this run

name: JuliaC
on:
push:
branches: [master]
pull_request:
types: [opened, synchronize, reopened]
# needed to allow julia-actions/cache to delete old caches that it has created
permissions:
actions: write
contents: read
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
include:
- version: '1.12'
os: ubuntu-latest
arch: x64
steps:
- uses: actions/checkout@v7
- uses: julia-actions/setup-julia@v3
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v3
- uses: julia-actions/julia-buildpkg@v1
- shell: julia --color=yes --project=test/JuliaC/App {0}
run: |
using Pkg
Pkg.develop(PackageSpec(path=pwd()))
Pkg.instantiate()
- shell: julia --color=yes --project=test/JuliaC {0}
run: |
using Pkg
Pkg.instantiate()
- run: julia --color=yes --project=test/JuliaC test/JuliaC/build.jl