Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 0 additions & 35 deletions .github/actions/CI.yml

This file was deleted.

7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
59 changes: 59 additions & 0 deletions .github/workflows/UnitTests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: Run tests

on:
push:
branches:
- main
paths:
- '.github/workflows/UnitTests.yml'
- 'ext/**'
- 'src/**'
- 'test/**'
- 'Project.toml'
pull_request:
paths:
- '.github/workflows/UnitTests.yml'
- 'ext/**'
- 'src/**'
- 'test/**'
- 'Project.toml'

# needed to allow julia-actions/cache to delete old caches that it has created
permissions:
actions: write
contents: read

concurrency:
# Skip intermediate builds: always.
# Cancel intermediate builds: always.
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

jobs:
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
julia-version:
- 'min'
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Probably it's just me, but I prefer testing min, the nominally oldest supported version, rather than lts: I don't personally care too much which version happens to be the LTS, I ideally interpolate between min and 1 😀 Happy to restore lts if you have a strong opinion about this though.

- '1'
- 'pre'
julia-arch:
- x64
- x86
os:
- ubuntu-latest
- windows-latest
- macOS-latest
exclude:
- os: macOS-latest
julia-arch: x86

steps:
- uses: actions/checkout@v5
- uses: julia-actions/setup-julia@v2
with:
version: ${{ matrix.julia-version }}
arch: ${{ matrix.julia-arch }}
- uses: julia-actions/cache@v2
- uses: julia-actions/julia-runtest@v1
Loading