Skip to content

Merge pull request #24 from mozilla-services/fix-for-github-actions #29

Merge pull request #24 from mozilla-services/fix-for-github-actions

Merge pull request #24 from mozilla-services/fix-for-github-actions #29

Workflow file for this run

name: Go
on:
push:
branches: [main]
pull_request:
branches: [main]
merge_group:
types: [checks_requested]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
dir: [metrics, ciplatforms]
defaults:
run:
working-directory: ${{ matrix.dir }}
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21.x'
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...