mirror of
https://github.com/ralsina/tartrazine.git
synced 2025-05-24 16:21:14 -03:00
This mitigates the problem that tokenizer uses regex that matches platform-specific line endings TestPlan: - go test ./internal/code-generator/generator \ -run Test_GeneratorTestSuite -testify.m TestTokenizerOnATS Signed-off-by: Alexander Bezzubov <bzz@apache.org>
52 lines
1.4 KiB
YAML
52 lines
1.4 KiB
YAML
on: [push, pull_request]
|
|
name: Test
|
|
jobs:
|
|
test:
|
|
strategy:
|
|
matrix:
|
|
go-version: [1.13.x, 1.14.x]
|
|
platform: [ubuntu-latest, macos-latest, windows-latest]
|
|
runs-on: ${{ matrix.platform }}
|
|
steps:
|
|
- name: Install Go
|
|
uses: actions/setup-go@v1
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
|
|
- name: Set git on win to use LF
|
|
run: |
|
|
git config --global core.autocrlf false
|
|
git config --global core.eol lf
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
- name: Test
|
|
run: go test ./...
|
|
env:
|
|
ENRY_DEBUG: 1
|
|
test-oniguruma:
|
|
strategy:
|
|
matrix:
|
|
go-version: [1.13.x, 1.14.x]
|
|
runs-on: ubuntu-latest
|
|
env:
|
|
ONIGURUMA_VERSION: 6.9.1
|
|
steps:
|
|
- name: Install libonig5
|
|
run: |
|
|
wget "http://archive.ubuntu.com/ubuntu/pool/universe/libo/libonig/libonig5_${ONIGURUMA_VERSION}-1_amd64.deb"
|
|
sudo dpkg -i "libonig5_${ONIGURUMA_VERSION}-1_amd64.deb"
|
|
wget "http://archive.ubuntu.com/ubuntu/pool/universe/libo/libonig/libonig-dev_${ONIGURUMA_VERSION}-1_amd64.deb"
|
|
sudo dpkg -i "libonig-dev_${ONIGURUMA_VERSION}-1_amd64.deb"
|
|
|
|
- name: Install Go
|
|
uses: actions/setup-go@v1
|
|
with:
|
|
go-version: ${{ matrix.go-version }}
|
|
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Test
|
|
run: go test ./...
|
|
env:
|
|
GO_TAGS: oniguruma |