[Snyk] Security upgrade ubuntu from latest to 24.04 #276
This file contains hidden or 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
| name: Run SkLearn Tests | |
| on: | |
| pull_request: | |
| types: [opened, reopened, synchronize] | |
| jobs: | |
| test_core: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Run Core Unit Tests | |
| run: docker build -t rust-onnx-runtime . && docker run --rm rust-onnx-runtime bash -c "cd modules/core && cargo test --features sklearn-tests" |