docs: add license headers and spdx id #29
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: CI build | |
on: | |
pull_request: | |
jobs: | |
build-and-test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install sodium | |
run: sudo apt-get install -y libsodium-dev | |
- name: Setup Go | |
uses: actions/setup-go@v1 | |
with: | |
go-version: 1.19 | |
- name: Build | |
run: make build | |
- name: Test | |
run: make test |