diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2022-11-13 16:32:24 +0100 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2022-11-13 16:32:24 +0100 |
| commit | 9b88a38e54818daf6fda4e2dda4ab4aa6c6dbd5d (patch) | |
| tree | 8019ee70ba3d4470e2411f6d7d76d7c33800d5b7 /.github/workflows | |
| parent | 16a494347c82ea22686146b5e932d6683d761751 (diff) | |
map tests for Linux and Mac
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ci.yml | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 689c1d67a..0c43690ad 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -38,6 +38,11 @@ jobs: cd tests/vendor make timeout-minutes: 10 + - name: Odin internals tests + run: | + cd tests/internal + make + timeout-minutes: 10 - name: Odin check examples/all for Linux i386 run: ./odin check examples/all -vet -strict-style -target:linux_i386 timeout-minutes: 10 @@ -87,6 +92,11 @@ jobs: cd tests/vendor make timeout-minutes: 10 + - name: Odin internals tests + run: | + cd tests/internals + make + timeout-minutes: 10 - name: Odin check examples/all for Darwin arm64 run: ./odin check examples/all -vet -strict-style -target:darwin_arm64 timeout-minutes: 10 |