Skip to content

Removing Stars From a String #94

Removing Stars From a String

Removing Stars From a String #94

Workflow file for this run

name: Go Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod # Or specify a version like '1.22'
- name: Run Go tests
run: go test -v ./...