Skip to content

Add tests on long strings with few different characters #22

Add tests on long strings with few different characters

Add tests on long strings with few different characters #22

Workflow file for this run

on: [push, pull_request]
name: CI
jobs:
test:
strategy:
matrix:
go-version: [1.22.x, 1.23.x]
os: [ubuntu-latest, macos-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v4
- name: Lint
run: make lint
- name: Test
run: make test
- name: Install
run: make install