Skip to content

Commit

Permalink
Removing ONNX.jl from deps, update ONNXNaiveNASflux (#2)
Browse files Browse the repository at this point in the history
* Removing ONNX.jl from deps, update ONNXNaiveNASflux
* Add CI
  • Loading branch information
AnHeuermann authored Jun 5, 2024
1 parent f2f7db2 commit 1f69ea9
Show file tree
Hide file tree
Showing 7 changed files with 1,327 additions and 540 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/test.yml
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
Loading

0 comments on commit 1f69ea9

Please sign in to comment.