Skip to content

CI: updated workflows #58

CI: updated workflows

CI: updated workflows #58

Workflow file for this run

name: Go
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 in 'learning_go/13_testing'
run: |
cd learning_go/13_testing
go test ./...
- name: Run tests in 'monkey/interpreter'
run: |
cd monkey/interpreter
go test ./...
- name: Run tests in 'web_app_bis'
run: |
cd web_app_bis
go test ./...