diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 94e632f..d2b9857 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -8,7 +8,7 @@ jobs: strategy: fail-fast: false matrix: - go-version: [1.16.x, 1.17.x, 1.18.x, 1.19.x, 1.20.x, 1.21.x] + go-version: [1.17.x, 1.18.x, 1.19.x, 1.20.x, 1.21.x] os: [ubuntu-latest, macos-latest, windows-latest] runs-on: ${{ matrix.os }} steps: diff --git a/.vscode/launch.json b/.vscode/launch.json index 05d4f9f..eaadd61 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -9,7 +9,8 @@ "type": "go", "request": "launch", "mode": "debug", - "program": "${file}" + "program": "${file}", + "args": ["dump", "--file-header"] }, { "name": "Attach to Process", @@ -26,4 +27,4 @@ "program": "${fileDirname}" } ] -} \ No newline at end of file +} diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..661adba --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,5 @@ +{ + "cSpell.words": [ + "elfdump" + ] +}