std/jule/token: remove LexMode and add fields as grouped constant var… #1269
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: Std Tests [GCC] - Windows | |
on: [push, pull_request] | |
jobs: | |
build-and-exec: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: julelang/ci@main | |
- name: Test - std/bufio | |
run: | | |
.\bin\julec test --compiler gcc -o test std/bufio | |
./test | |
- name: Test - std/bytes | |
run: | | |
.\bin\julec test --compiler gcc -o test std/bytes | |
./test | |
- name: Test - std/conv | |
run: | | |
.\bin\julec test --compiler gcc -o test std/conv/test | |
./test | |
- name: Test - std/internal/byteslite | |
run: | | |
.\bin\julec test --compiler gcc -o test std/internal/byteslite/test | |
./test | |
- name: Test - std/internal/conv | |
run: | | |
.\bin\julec test --compiler gcc -o test std/internal/conv/test | |
./test | |
- name: Test - std/encoding/ascii85 | |
run: | | |
.\bin\julec test --compiler gcc -o test std/encoding/ascii85 | |
./test | |
- name: Test - std/encoding/base32 | |
run: | | |
.\bin\julec test --compiler gcc -o test std/encoding/base32 | |
./test | |
- name: Test - std/encoding/base64 | |
run: | | |
.\bin\julec test --compiler gcc -o test std/encoding/base64 | |
./test | |
- name: Test - std/encoding/csv | |
run: | | |
.\bin\julec test --compiler gcc -o test std/encoding/csv | |
./test | |
- name: Test - std/encoding/json | |
run: | | |
.\bin\julec test --compiler gcc -o test std/encoding/json | |
./test | |
- name: Test - std/hash/adler32 | |
run: | | |
.\bin\julec test --compiler gcc -o test std/hash/adler32 | |
./test | |
- name: Test - std/hash/fnv | |
run: | | |
.\bin\julec test --compiler gcc -o test std/hash/fnv | |
./test | |
- name: Test - std/html | |
run: | | |
.\bin\julec test --compiler gcc -o test std/html | |
./test | |
- name: Test - std/io | |
run: | | |
.\bin\julec test --compiler gcc -o test std/io/test | |
./test | |
- name: Test - std/maps | |
run: | | |
.\bin\julec test --compiler gcc -o test std/maps | |
./test | |
- name: Test - std/math | |
run: | | |
.\bin\julec test --compiler gcc -o test std/math/test | |
./test | |
- name: Test - std/math/big | |
run: | | |
.\bin\julec test --compiler gcc -o test std/math/big | |
./test | |
- name: Test - std/math/bits | |
run: | | |
.\bin\julec test --compiler gcc -o test std/math/bits/test | |
./test | |
- name: Test - std/math/cmplx | |
run: | | |
.\bin\julec test --compiler gcc -o test std/math/cmplx | |
./test | |
- name: Test - std/net | |
run: | | |
.\bin\julec test --compiler gcc -o test std/net | |
./test | |
- name: Test - std/net/url | |
run: | | |
.\bin\julec test --compiler gcc -o test std/net/url | |
./test | |
- name: Test - std/os | |
run: | | |
.\bin\julec test --compiler gcc -o test std/os/test | |
./test | |
- name: Test - std/path | |
run: | | |
.\bin\julec test --compiler gcc -o test std/path | |
./test | |
- name: Test - std/slices | |
run: | | |
.\bin\julec test --compiler gcc -o test std/slices | |
./test | |
- name: Test - std/strings | |
run: | | |
.\bin\julec test --compiler gcc -o test std/strings/test | |
./test | |
- name: Test - std/sync | |
run: | | |
.\bin\julec test --compiler gcc -o test std/sync/test | |
./test | |
- name: Test - std/time | |
run: | | |
.\bin\julec test --compiler gcc -o test std/time/test | |
./test | |
- name: Test - std/unicode/utf8 | |
run: | | |
.\bin\julec test --compiler gcc -o test std/unicode/utf8/test | |
./test | |
- name: Test - std/unicode/utf16 | |
run: | | |
.\bin\julec test --compiler gcc -o test std/unicode/utf16/test | |
./test |