Skip to content
Open
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
6 changes: 5 additions & 1 deletion .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/" # Location of package manifests
directory: "/"
schedule:
interval: "weekly"
- package-ecosystem: "julia"
directory: "/"
schedule:
interval: "weekly"
23 changes: 7 additions & 16 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,8 @@ jobs:
matrix:
version:
- 'lts'
- '1.11'
- '1.12'
- 'pre'
- 'nightly'
os:
- ubuntu-latest
arch:
Expand All @@ -41,15 +40,13 @@ jobs:
include:
- version: 'pre'
experimental: true
- version: 'nightly'
experimental: true
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
- uses: actions/checkout@v6
- uses: julia-actions/setup-julia@v3
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v2
- uses: julia-actions/cache@v3
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-runtest@v1
with:
Expand All @@ -64,17 +61,11 @@ jobs:
contents: write
statuses: write
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
- uses: actions/checkout@v6
- uses: julia-actions/setup-julia@v3
with:
version: '1'
- uses: julia-actions/cache@v2
- name: Configure doc environment
shell: julia --project=docs --color=yes {0}
run: |
using Pkg
Pkg.develop(PackageSpec(path=pwd()))
Pkg.instantiate()
- uses: julia-actions/cache@v3
- uses: julia-actions/julia-buildpkg@v1
- uses: julia-actions/julia-docdeploy@v1
env:
Expand Down
16 changes: 0 additions & 16 deletions .github/workflows/CompatHelper.yml

This file was deleted.

14 changes: 5 additions & 9 deletions .github/workflows/Downgrade.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,26 +23,22 @@ jobs:
matrix:
version:
- 'lts'
- '1.11'
- 'pre'
- 'nightly'
- '1.12'
os:
- ubuntu-latest
arch:
- x64
- x86
include:
- version: 'pre'
experimental: true
- version: 'nightly'
- version: '1.12'
experimental: true
steps:
- uses: actions/checkout@v4
- uses: julia-actions/setup-julia@v2
- uses: actions/checkout@v6
- uses: julia-actions/setup-julia@v3
with:
version: ${{ matrix.version }}
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v2
- uses: julia-actions/cache@v3
- uses: julia-actions/julia-downgrade-compat@v1
with:
skip: LinearAlgebra,Test
Expand Down
16 changes: 0 additions & 16 deletions .github/workflows/TagBot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,6 @@ on:
types:
- created
workflow_dispatch:
inputs:
lookback:
default: "3"
permissions:
actions: read
checks: read
contents: write
deployments: read
issues: read
discussions: read
packages: read
pages: read
pull-requests: read
repository-projects: read
security-events: read
statuses: read
jobs:
TagBot:
if: github.event_name == 'workflow_dispatch' || github.actor == 'JuliaTagBot'
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.DS_Store
Manifest.toml
Manifest*.toml
*.jl.*.cov
*.jl.cov
*.jl.mem
Expand Down
10 changes: 5 additions & 5 deletions Project.toml
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
name = "ImplicitArrays"
uuid = "2c62951c-9479-4435-88c8-614a84373d38"
desc = "Implicit Arrays for Julia"
authors = ["Thomas Kemmer <thomas@binaryden.de>"]
version = "0.3.0"
authors = ["Thomas Kemmer <thomas@binaryden.de>"]

[compat]
Aqua = "0.8.13"
Aqua = "0.8.14"
ParallelTestRunner = "1.0.2"
Test = "1.10"
TestItemRunner = "1"
julia = "1.10"

[extras]
Aqua = "4c88cf16-eb10-579e-8560-4a9242c79595"
ParallelTestRunner = "d3525ed8-44d0-4b2c-a655-542cee43accc"
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
TestItemRunner = "f8b46487-2199-4994-9208-9a1283c18c0a"

[targets]
test = ["Aqua", "Test", "TestItemRunner"]
test = ["Aqua", "ParallelTestRunner", "Test"]
6 changes: 2 additions & 4 deletions test/aqua.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
@testitem "Aqua" begin
using Aqua
using Aqua

Aqua.test_all(ImplicitArrays)
end
Aqua.test_all(ImplicitArrays)
Loading