Skip to content

simple typos (#6)

simple typos (#6) #27

Workflow file for this run

name: did-dht-ci
# when:
# - a pull request is opened against main
# - commits are pushed to main
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
# used to run action manually via the UI
workflow_dispatch:
jobs:
vulnerability-scan:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./impl
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.21.3
- name: Install Mage
run: go install github.com/magefile/mage
- name: Check Vulnerabilities
run: mage -v vuln
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./impl
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.21.3
- name: Install Mage
run: go install github.com/magefile/mage
- name: Build
run: mage build
- name: Test
run: mage citest