Skip to content

Implements handling of insecure TLS connections in Mehkit #1007

Implements handling of insecure TLS connections in Mehkit

Implements handling of insecure TLS connections in Mehkit #1007

Workflow file for this run

name: Lint and unit tests
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-go@master
with:
go-version: '1.21'
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: latest
- name: Run golangci-lint
run: make check
tidy:
name: tidy
needs: [golangci]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-go@master
with:
go-version: '1.21'
- name: go mod tidy
run: make tidy
tests:
name: Tests
needs: [tidy]
runs-on: ubuntu-latest
env:
ACTIONS_ALLOW_UNSECURE_COMMANDS: true
steps:
- name: Check out code
uses: actions/checkout@master
with:
fetch-depth: 1
- name: Setup Go
uses: actions/setup-go@master
with:
go-version: 1.21
- run: make test