From 3c170b6964eff47d08b88e828c0ff203c2edb2fc Mon Sep 17 00:00:00 2001 From: Mauro Werder Date: Tue, 22 Oct 2024 14:45:56 +0200 Subject: [PATCH] use project option and latest actions --- .github/workflows/CI.yml | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index b47c33b..f6c9deb 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -12,12 +12,13 @@ jobs: os: [ubuntu-latest] steps: - - uses: actions/checkout@v4 - - uses: julia-actions/setup-julia@v1 + - uses: actions/checkout@latest + - uses: julia-actions/setup-julia@latest with: version: ${{ matrix.julia-version }} arch: ${{ matrix.julia-arch }} - - uses: julia-actions/cache@v1 + - uses: julia-actions/cache@latest - uses: julia-actions/julia-buildpkg@latest - - run: julia --color=yes -e 'cd("subfolder"); - import Pkg; Pkg.activate("."); Pkg.test()' + - uses: julia-actions/julia-runtest@latest + with: + project: "subfolder"