Skip to content

Commit 112001b

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

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

0 commit comments

Comments
 (0)