Skip to content

Commit

Permalink
CI*.yml updated
Browse files Browse the repository at this point in the history
  • Loading branch information
SotaYoshida committed Mar 4, 2024
1 parent ad7a996 commit 5dbfb2a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,9 @@ jobs:
- uses: julia-actions/cache@v1
- uses: julia-actions/julia-buildpkg@v1
- name: "Run tests"
run: julia --project -e 'import Pkg; Pkg.test()'
run: |
cp -r test/* .
julia --project -e 'import Pkg; Pkg.test()'
build:
runs-on: ubuntu-latest
strategy:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/CI_pullrequest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,9 @@ jobs:
- uses: julia-actions/julia-buildpkg@v1
#- uses: julia-actions/julia-runtest@v1
- name: "Run tests"
run: julia --project -e 'import Pkg; Pkg.test()'
run: |
cp -r test/* .
julia --project -e 'import Pkg; Pkg.test()'
# env:
# JULIA_NUM_THREADS: 2
# if: ${{ matrix.payload == 'serial' }}
Expand Down

0 comments on commit 5dbfb2a

Please sign in to comment.