Skip to content

Correct pseudo code #111

Correct pseudo code

Correct pseudo code #111

Workflow file for this run

name: CI
on:
push:
branches:
- main
tags: ['*']
pull_request:
concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: only if it is a pull request build.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ startsWith(github.ref, 'refs/pull/') }}
jobs:
test:
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
defaults:
run:
shell: bash
strategy:
fail-fast: false
matrix:
version:
- '1.9'
- '~1.10.0-0'
- 'nightly'
os:
- ubuntu-latest
- windows-latest
- macos-latest
arch:
- x64
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v1
- name: Develop packages
run: |
julia --project=test -e '
using Pkg
Pkg.develop([PackageSpec(path=pwd())])
Pkg.instantiate()'
- uses: julia-actions/julia-buildpkg@v1
with:
project: test
- name: Print package status
run: |
julia --project=test -e '
using InteractiveUtils
versioninfo()
using Pkg
Pkg.status(;mode=Pkg.PKGMODE_MANIFEST)'
- name: Run tests
run: |
cd test &&
julia --project --color=yes --depwarn=yes --warn-overwrite=yes --warn-scope=yes --check-bounds=yes runtests.jl