Skip to content

Commit d8ac437

Browse files
committed
PVC CI
1 parent 71a7de7 commit d8ac437

File tree

1 file changed

+32
-0
lines changed

1 file changed

+32
-0
lines changed

.github/workflows/ci.yml

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
name: CI
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
tags: '*'
8+
pull_request:
9+
types: [opened, synchronize, reopened]
10+
schedule:
11+
- cron: '0 0 * * 0'
12+
13+
jobs:
14+
pvc:
15+
env:
16+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17+
runs-on: [self-hosted, linux, X64, gpu, oneapi]
18+
strategy:
19+
matrix:
20+
os: [ubuntu-latest]
21+
julia-version: ['lts', '1']
22+
julia-arch: [x64]
23+
steps:
24+
- uses: actions/checkout@v4
25+
- uses: julia-actions/setup-julia@latest
26+
with:
27+
version: ${{ matrix.julia-version }}
28+
arch: ${{ matrix.julia-arch }}
29+
- uses: julia-actions/cache@v2
30+
- uses: julia-actions/julia-buildpkg@latest
31+
- uses: julia-actions/julia-runtest@latest
32+

0 commit comments

Comments
 (0)