diff --git a/.github/workflows/Test.yml b/.github/workflows/Test.yml index 0b70a1b..792aba6 100644 --- a/.github/workflows/Test.yml +++ b/.github/workflows/Test.yml @@ -19,14 +19,16 @@ jobs: - name: Check out repository uses: actions/checkout@v2 - # Set up Julia - - name: "Set up Julia" - uses: julia-actions/setup-julia@latest + # Set up julia-cache + - name: Set up julia-cache + uses: julia-actions/cache@v2 with: version: ${{ matrix.julia-version }} arch: ${{ matrix.julia-arch }} - - uses: actions/cache@v1 + # Set up cache + - name: "Set up cache" + uses: actions/cache@v4 env: cache-name: cache-artifacts with: @@ -46,11 +48,11 @@ jobs: uses: julia-actions/julia-runtest@v1 # Preprocess Coverage - - name: "Preprocess Coverage" - uses: julia-actions/julia-processcoverage@v1 + #- name: "Preprocess Coverage" + # uses: julia-actions/julia-processcoverage@v1 # Run codecov - - name: "Run CodeCov" - uses: codecov/codecov-action@v1 - with: - file: lcov.info + #- name: "Run CodeCov" + # uses: codecov/codecov-action@v1 + # with: + # file: lcov.info diff --git a/Project.toml b/Project.toml index 1d5f142..2ba98f6 100644 --- a/Project.toml +++ b/Project.toml @@ -1,7 +1,7 @@ name = "ForwardDiffChainRules" uuid = "c9556dd2-1aed-4cfe-8560-1557cf593001" authors = ["MT ", "TT "] -version = "0.2.1" +version = "0.3.0" [deps] ChainRulesCore = "d360d2e6-b24c-11e9-a2a3-2a2ae2dbcce4" @@ -12,6 +12,6 @@ MacroTools = "1914dd2f-81c6-5fcd-8719-6d5c9610ff09" [compat] ChainRulesCore = "1.15.0, 1.16.0" DifferentiableFlatten = "0.1.1" -ForwardDiff = "0.10.0" +ForwardDiff = "0.10, 1" MacroTools = "0.5.10" julia = "1.6"