Skip to content

Call Pkg.upgrade_manifest() when updating packages #3817

Call Pkg.upgrade_manifest() when updating packages

Call Pkg.upgrade_manifest() when updating packages #3817

Workflow file for this run

name: Pluto backend tests
# Controls when the action will run. Triggers the workflow on push or pull request
# events but only for the main branch
on:
workflow_dispatch:
push:
paths-ignore:
- "frontend/**"
- "frontend-bundler/**"
- "frontend-dist/**"
- "test/frontend/**"
- "**.md"
branches:
- main
pull_request:
paths-ignore:
- "frontend/**"
- "frontend-bundler/**"
- "frontend-dist/**"
- "test/frontend/**"
- "**.md"
branches-ignore:
- release
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
test:
runs-on: ${{ matrix.os }}
timeout-minutes: 40
strategy:
# Without setting this, a failing test cancels all others
fail-fast: false
matrix:
# We test quite a lot of versions because we do some OS and version specific things unfortunately
julia-version: ["1.6", "1.7", "1.8", "1.9"] #, "nightly"]
os: [ubuntu-latest, macOS-latest, windows-latest]
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
# Makes the `julia` command available
- uses: julia-actions/setup-julia@v1
with:
version: ${{ matrix.julia-version }}
- uses: julia-actions/cache@v1
# πŸš—
- uses: julia-actions/julia-runtest@v1
with:
coverage: false