Skip to content

feat: basic airtable provider for go-mysql-server #2

feat: basic airtable provider for go-mysql-server

feat: basic airtable provider for go-mysql-server #2

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
e2e:
# Only ubuntu allows for docker support - https://docs.github.com/en/actions/using-containerized-services/about-service-containers
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4.2.2
- name: Set up Go
uses: actions/setup-go@v5.3.0
with:
go-version: '1.24'
- name: Build
run: go build -v ./...
- name: Test
run: |
sudo apt-get install moreutils -y
make test
- name: Checks
run: |
make checks
# platforms:
# runs-on: ${{ matrix.os }}
# strategy:
# matrix:
# os:
# - "windows-latest"
# - "macos-latest"
# steps:
# - uses: actions/checkout@v4.2.2
# - uses: actions/setup-go@v5.3.0
# with:
# go-version: '1.24'
# - name: Test
# run: make short-test