Skip to content

Update SDK to Omicron dcd3d9e #328

Update SDK to Omicron dcd3d9e

Update SDK to Omicron dcd3d9e #328

Workflow file for this run

name: build & test
on:
push:
branches: main
pull_request:
branches: main
jobs:
build-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.x"
- name: build
shell: bash
run: |
make build
- name: test
shell: bash
run: |
make test
env:
OXIDE_API_TOKEN: ${{secrets.OXIDE_API_TOKEN}}
- name: lint
shell: bash
run: |
make lint
- name: staticcheck
shell: bash
run: |
make staticcheck
- name: vet
shell: bash
run: |
make vet
- name: fmt
shell: bash
run: |
make fmt