Skip to content

chore: Adds workflow for build and unit tests (#44) #1

chore: Adds workflow for build and unit tests (#44)

chore: Adds workflow for build and unit tests (#44) #1

Workflow file for this run

# SPDX-License-Identifier: Apache-2.0
# Copyright 2023 Canonical Ltd.
name: Master workflow
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Build
run: go build
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Unit tests
run: go test ./...