Skip to content

Fix typo in file_reader.cpp (#3) #11

Fix typo in file_reader.cpp (#3)

Fix typo in file_reader.cpp (#3) #11

Workflow file for this run

name: Go CI
on:
push:
-pachs:
-'go/**'
-'!cpp/**'
branches:
- main
pull_request:
-pachs:
-'go/**'
-'!cpp/**'
branches:
- main
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: 1.18
- name: Install dependencies
run: cd go && go mod download
- name: Run tests
run: cd go && go test -v ./...