Skip to content

Commit 0734834

Browse files
mohdibntarekMohamed Tarek
andauthored
Support DSP 0.8 and bump version (#84)
* bump dsp in compat * bump version to 0.7.3 * update CI * update actions/cache to v4 * nightly to pre --------- Co-authored-by: Mohamed Tarek <[email protected]>
1 parent 47ec5bd commit 0734834

File tree

4 files changed

+36
-12
lines changed

4 files changed

+36
-12
lines changed

.github/dependabot.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: 2
2+
updates:
3+
# Maintain dependencies for GitHub Actions
4+
- package-ecosystem: "github-actions"
5+
directory: "/"
6+
schedule:
7+
interval: "weekly"

.github/workflows/CompatHelper.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: CompatHelper
2+
on:
3+
schedule:
4+
- cron: '00 00 * * *'
5+
workflow_dispatch:
6+
jobs:
7+
CompatHelper:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- name: Pkg.add("CompatHelper")
11+
run: julia -e 'using Pkg; Pkg.add("CompatHelper")'
12+
- name: CompatHelper.main()
13+
env:
14+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
15+
COMPATHELPER_PRIV: ${{ secrets.DOCUMENTER_KEY }}
16+
run: julia -e 'using CompatHelper; CompatHelper.main(; subdirs = ["", "docs"])'

.github/workflows/ci.yml

Lines changed: 11 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
name: CI
22
on:
3-
push:
4-
branches: [master]
5-
tags: ["*"]
63
pull_request:
4+
push:
5+
branches:
6+
- master
7+
tags: '*'
78
jobs:
89
test:
910
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
@@ -13,7 +14,7 @@ jobs:
1314
matrix:
1415
version:
1516
- '1' # automatically expands to the latest stable 1.x release of Julia
16-
- 'nightly'
17+
- 'pre'
1718
os:
1819
- ubuntu-latest
1920
- macOS-latest
@@ -25,12 +26,12 @@ jobs:
2526
- os: macOS-latest
2627
arch: x86
2728
steps:
28-
- uses: actions/checkout@v2
29-
- uses: julia-actions/setup-julia@v1
29+
- uses: actions/checkout@v5
30+
- uses: julia-actions/setup-julia@v2
3031
with:
3132
version: ${{ matrix.version }}
3233
arch: ${{ matrix.arch }}
33-
- uses: actions/cache@v1
34+
- uses: actions/cache@v4
3435
env:
3536
cache-name: cache-artifacts
3637
with:
@@ -43,15 +44,15 @@ jobs:
4344
- uses: julia-actions/julia-buildpkg@v1
4445
- uses: julia-actions/julia-runtest@v1
4546
- uses: julia-actions/julia-processcoverage@v1
46-
- uses: codecov/codecov-action@v1
47+
- uses: codecov/codecov-action@v5
4748
with:
4849
file: lcov.info
4950
docs:
5051
name: Documentation
5152
runs-on: ubuntu-latest
5253
steps:
53-
- uses: actions/checkout@v2
54-
- uses: julia-actions/setup-julia@v1
54+
- uses: actions/checkout@v5
55+
- uses: julia-actions/setup-julia@v2
5556
with:
5657
version: '1'
5758
- run: |

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "Lasso"
22
uuid = "b4fcebef-c861-5a0f-a7e2-ba9dc32b180a"
3-
version = "0.7.2"
3+
version = "0.7.3"
44

55
[deps]
66
DSP = "717857b8-e6f2-59f4-9121-6e50c889abd2"
@@ -15,7 +15,7 @@ StatsBase = "2913bbd2-ae8a-5f71-8c99-4fb6c76f3a91"
1515
StatsModels = "3eaba693-59b7-5ba5-a881-562e759f1c8d"
1616

1717
[compat]
18-
DSP = "0.7"
18+
DSP = "0.7, 0.8"
1919
Distributions = "0.25"
2020
GLM = "1.8, 1.9"
2121
MLBase = "0.9"

0 commit comments

Comments
 (0)