diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index f5421f8..7047c83 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -7,27 +7,23 @@ on: tags: '*' jobs: test: - name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }} + name: Julia ${{ matrix.version }} - ${{ matrix.os }} - ${{ github.event_name }} runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: version: - - '1.6' + - 'lts' - '1' -# - 'nightly' os: - ubuntu-latest - macOS-latest - windows-latest - arch: - - x64 steps: - uses: actions/checkout@v6 - - uses: julia-actions/setup-julia@v2 + - uses: julia-actions/setup-julia@v3 with: version: ${{ matrix.version }} - arch: ${{ matrix.arch }} - uses: actions/cache@v5 env: cache-name: cache-artifacts diff --git a/.github/workflows/CompatHelper.yml b/.github/workflows/CompatHelper.yml index 8ad0284..446dc33 100644 --- a/.github/workflows/CompatHelper.yml +++ b/.github/workflows/CompatHelper.yml @@ -15,7 +15,7 @@ jobs: run: which julia continue-on-error: true - name: Install Julia, but only if it is not already available in the PATH - uses: julia-actions/setup-julia@v2 + uses: julia-actions/setup-julia@v3 with: version: '1' arch: ${{ runner.arch }} diff --git a/Project.toml b/Project.toml index 59d2241..4b628ed 100644 --- a/Project.toml +++ b/Project.toml @@ -17,7 +17,7 @@ Distributions = "0.16, 0.17, 0.18, 0.19, 0.20, 0.21, 0.22, 0.23, 0.24, 0.25" FastGaussQuadrature = "0.3, 0.4, 0.5, 1" GSL = "0.4, 1" SpecialFunctions = "0.7, 1, 2" -julia = "1.6" +julia = "1.10" [extras] Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"