Skip to content

ci: create test workflow #1

ci: create test workflow

ci: create test workflow #1

Workflow file for this run

name: test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: set up go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: run tests
run: go test -v ./pkg/lexer && go test -v ./pkg/parser