Adding separate tests for nim code

Signed-off-by: Jacob Torrey <jacob@thinkst.com>
pull/6/head
Jacob Torrey 2023-05-12 16:42:17 -06:00
rodzic f0bb0c109d
commit ca3b13a790
2 zmienionych plików z 31 dodań i 1 usunięć

30
.github/workflows/nimtest.yml vendored 100644
Wyświetl plik

@ -0,0 +1,30 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Test nim classification accuracy
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Nim
run: |
curl https://nim-lang.org/choosenim/init.sh -sSf > init.sh
sh init.sh -y
- name: Test with nimble test
#continue-on-error: true
run: |
export PATH=$HOME/.nimble/bin:$PATH
cd nlzmadetect && nimble test -y

Wyświetl plik

@ -1,7 +1,7 @@
# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Test classification accuracy
name: Test python classification accuracy
on:
push: