chore: Upgrade pynumaflow 0.6 #310
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build SerDe | |
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.x | |
uses: actions/[email protected] | |
with: | |
go-version: "1.19" | |
cache: true | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v3 | |
- name: Get dependencies | |
run: | | |
cd prometheus-serde | |
go mod download | |
- run: | | |
cd prometheus-serde | |
make build | |
test: | |
name: Unit Tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.x | |
uses: actions/[email protected] | |
with: | |
go-version: "1.19" | |
cache: true | |
id: go | |
- uses: actions/checkout@v3 | |
- name: Get dependencies | |
run: | | |
cd prometheus-serde | |
go mod download | |
- run: | | |
cd prometheus-serde | |
make test | |