From 70d39f8d62a0206bf8a8a6aec99e1a754888700f Mon Sep 17 00:00:00 2001 From: LordNoteworthy Date: Wed, 30 Aug 2023 14:51:28 +1000 Subject: [PATCH] chore: update CI workflow --- .github/workflows/ci.yaml | 2 +- .vscode/launch.json | 5 +++-- .vscode/settings.json | 5 +++++ 3 files changed, 9 insertions(+), 3 deletions(-) create mode 100644 .vscode/settings.json 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" + ] +}