Skip to content

test: add test case for exponentiation-expr #13

test: add test case for exponentiation-expr

test: add test case for exponentiation-expr #13

Workflow file for this run

name: Go Test
on: [push, pull_request]
permissions:
contents: write
checks: write
id-token: write
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.24
- uses: actions/setup-go@v3
- name: go test
run: go test ./... -coverprofile=./coverage.txt
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}