-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removing ONNX.jl from deps, update ONNXNaiveNASflux (#2)
* Removing ONNX.jl from deps, update ONNXNaiveNASflux * Add CI
- Loading branch information
1 parent
f2f7db2
commit 1f69ea9
Showing
7 changed files
with
1,327 additions
and
540 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Test | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
|
||
jobs: | ||
test: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
julia-version: ['1.10'] | ||
julia-arch: [x64] | ||
os: [ubuntu-latest, windows-latest] | ||
timeout-minutes: 60 | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Setup Julia | ||
uses: julia-actions/setup-julia@v2 | ||
with: | ||
version: ${{ matrix.julia-version }} | ||
arch: ${{ matrix.julia-arch }} | ||
|
||
- name: Cache Julia | ||
uses: julia-actions/cache@v2 | ||
|
||
- name: Build package | ||
uses: julia-actions/julia-buildpkg@v1 | ||
|
||
- name: Run tests | ||
uses: julia-actions/julia-runtest@v1 |
Oops, something went wrong.