Update d.yml

This commit is contained in:
Tristan B. Velloza Kildaire 2023-03-26 13:41:22 +02:00 committed by GitHub
parent 009c4cf560
commit a734347a89
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 6 deletions

View File

@ -91,12 +91,7 @@ jobs:
run: ./tlang typecheck source/tlang/testing/typecheck/simple_function_call.t
- name: Simple function call 1
run: ./tlang typecheck source/tlang/testing/typecheck/simple_function_call_1.t
# - name: Simple float constant
# run: ./tlang typecheck source/tlang/testing/typecheck/simple_float_constant.t
# - name: Simple float constant bad
# run: ./tlang typecheck source/tlang/testing/typecheck/simple_float_constant_bad.t
- name: Simple string
run: ./tlang typecheck source/tlang/testing/typecheck/simple_string.t
- name: Simple array
run: ./tlang typecheck source/tlang/testing/typecheck/simple_array.t
@ -138,6 +133,13 @@ jobs:
- name: Simple literals 6
run: ./tlang typecheck source/tlang/testing/simple_literals6.t
- name: Simple float constant
run: ./tlang syntaxcheck source/tlang/testing/typecheck/simple_float_constant.t
- name: Simple float constant bad
run: ./tlang syntaxcheck source/tlang/testing/typecheck/simple_float_constant_bad.t
- name: Simple string
run: ./tlang syntaxcheck source/tlang/testing/typecheck/simple_string.t
emit:
needs: [build, unittests]
name: Emit tests