Skip to content

Commit 923beb2

Browse files
Patch 5 (#265)
* Update Project.toml * Update ci.yml * Update Project.toml
1 parent 72ca0e0 commit 923beb2

File tree

3 files changed

+35
-11
lines changed

3 files changed

+35
-11
lines changed

.github/workflows/ci.yml

Lines changed: 32 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,30 @@ on:
77
branches:
88
- master
99
tags: '*'
10+
workflow_dispatch:
1011
jobs:
1112
test:
1213
name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
1314
runs-on: ${{ matrix.os }}
15+
continue-on-error: ${{ matrix.version == 'nightly' }}
1416
strategy:
1517
fail-fast: false
1618
matrix:
1719
version:
18-
- '1.9' # Replace this with the minimum Julia version that your package supports. E.g. if your package requires Julia 1.5 or higher, change this to '1.5'.
19-
- '1' # Leave this line unchanged. '1' will automatically expand to the latest stable 1.x release of Julia.
20+
- '1.9'
21+
- '1'
22+
# - 'nightly'
2023
os:
2124
- ubuntu-latest
2225
arch:
2326
- x64
2427
steps:
25-
- uses: actions/checkout@v2
26-
- uses: julia-actions/setup-julia@v1
28+
- uses: actions/checkout@v4
29+
- uses: julia-actions/setup-julia@v2
2730
with:
2831
version: ${{ matrix.version }}
2932
arch: ${{ matrix.arch }}
30-
- uses: actions/cache@v1
33+
- uses: actions/cache@v4
3134
env:
3235
cache-name: cache-artifacts
3336
with:
@@ -40,7 +43,28 @@ jobs:
4043
- uses: julia-actions/julia-buildpkg@v1
4144
- uses: julia-actions/julia-runtest@v1
4245
- uses: julia-actions/julia-processcoverage@v1
43-
- uses: codecov/codecov-action@v1
46+
- uses: codecov/codecov-action@v5
4447
with:
45-
file: lcov.info
46-
48+
files: lcov.info
49+
# docs:
50+
# name: Documentation
51+
# runs-on: ubuntu-latest
52+
# steps:
53+
# - uses: actions/checkout@v4
54+
# - uses: julia-actions/setup-julia@v2
55+
# with:
56+
# version: '1'
57+
# - run: |
58+
# julia --project=docs -e '
59+
# using Pkg
60+
# Pkg.develop(PackageSpec(path=pwd()))
61+
# Pkg.instantiate()'
62+
# - run: |
63+
# julia --project=docs -e '
64+
# using Documenter: doctest
65+
# using ForwardDiff
66+
# doctest(ForwardDiff)'
67+
# - run: julia --project=docs docs/make.jl
68+
# env:
69+
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
70+
# DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}

Project.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name = "FixedEffectModels"
22
uuid = "9d5cd8c9-2029-5cab-9928-427838db53e3"
3-
version = "1.11.0"
3+
version = "1.11.1"
44

55
[deps]
66
DataFrames = "a93c6f00-e57d-5684-b7b6-d8193f3e46c0"
@@ -29,4 +29,4 @@ StatsFuns = "0.9, 1"
2929
StatsModels = "0.7"
3030
Tables = "1"
3131
Vcov = "0.8"
32-
julia = "1.6"
32+
julia = "1.9"

test/Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"
1313
[compat]
1414
CategoricalArrays = "0.10"
1515
CSV = "0.8, 0.9, 0.10"
16-
CUDA = "1, 2, 3, 4"
16+
CUDA = "1, 2, 3, 4, 5"
1717
Metal = "0.5"
1818
DataFrames = "0.21, 0.22, 1"
1919
FixedEffects = "2.2"

0 commit comments

Comments
 (0)