Skip to content

Check for both .yml and .yaml configs πŸ› #28

Check for both .yml and .yaml configs πŸ›

Check for both .yml and .yaml configs πŸ› #28

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 ./...