Skip to content

Bump github.com/gorilla/schema from 1.2.0 to 1.2.1 (#88) #32

Bump github.com/gorilla/schema from 1.2.0 to 1.2.1 (#88)

Bump github.com/gorilla/schema from 1.2.0 to 1.2.1 (#88) #32

Workflow file for this run

name: Test
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [ 'stable' ]
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Install dependencies
run: |
sudo apt update && sudo apt install -y libcryptsetup-dev
- name: Lint
run: make lint
- name: Test
run: make test