Skip to content

Commit 7f022f5

Browse files
Github action runnermichel2323
authored andcommitted
Adding Max 1100 GPU test
1 parent e52ad39 commit 7f022f5

File tree

1 file changed

+31
-0
lines changed

1 file changed

+31
-0
lines changed

.github/workflows/ci.yml

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
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+
self-runner:
15+
env:
16+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
17+
runs-on: [self-hosted, linux, X64]
18+
strategy:
19+
matrix:
20+
os: [ubuntu-latest]
21+
julia-version: ['lts', '1.11', '1']
22+
julia-arch: [x64]
23+
24+
steps:
25+
- uses: actions/checkout@v4
26+
- uses: julia-actions/setup-julia@latest
27+
with:
28+
version: ${{ matrix.julia-version }}
29+
- uses: julia-actions/cache@v2
30+
- uses: julia-actions/julia-buildpkg@latest
31+
- uses: julia-actions/julia-runtest@latest

0 commit comments

Comments
 (0)