Retry Sendto() for IPv6 NA for tentative IPv6 addresses and EADDRNOTAVAIL #401
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: Go-static-analysis | |
on: [push, pull_request] | |
jobs: | |
golangci: | |
name: Lint | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.22" | |
- uses: actions/checkout@v3 | |
- name: run make lint | |
run: make lint | |
shellcheck: | |
name: Shellcheck | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Run ShellCheck | |
uses: ludeeus/action-shellcheck@master | |
hadolint: | |
runs-on: ubuntu-latest | |
name: Hadolint | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: hadolint/[email protected] | |
name: Run Hadolint | |
with: | |
dockerfile: Dockerfile |