Skip to content

Merge pull request #38 from hrtsegv/dynamically-adjust-cell-width #22

Merge pull request #38 from hrtsegv/dynamically-adjust-cell-width

Merge pull request #38 from hrtsegv/dynamically-adjust-cell-width #22

Workflow file for this run

name: Go Test
on:
pull_request:
branches:
- main
paths:
- '**/*.go'
push:
branches:
- main
paths:
- '**/*.go'
workflow_dispatch:
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.22
- name: Configure Git
run: |
git config --global user.name "GitHub Actions"
git config --global user.email "anymail@example.com"
- name: chmod
run: chmod +x ./setup-test.sh
- name: setup tests
run: ./setup-test.sh
- name: Run tests
run: go test ./...