Skip to content

Commit

Permalink
fix: bypass cli question
Browse files Browse the repository at this point in the history
Signed-off-by: Lucas Fontes <[email protected]>
  • Loading branch information
lxfontes committed Sep 23, 2024
1 parent fbe4f24 commit 71f9b65
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/go.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,14 @@ env:
GOLANGCI_VERSION: "v1.61"

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: golangci/golangci-lint-action@v6
with:
version: ${{ env.GOLANGCI_VERSION }}

sdk-build:
runs-on: ubuntu-latest
steps:
Expand Down Expand Up @@ -42,7 +50,7 @@ jobs:
- uses: wasmCloud/common-actions/install-wash@main
- uses: cargo-bins/cargo-binstall@main
- name: Tools
run: cargo binstall wasm-tools
run: cargo binstall -y wasm-tools

- name: http-server
working-directory: _examples/http-server
Expand All @@ -51,11 +59,3 @@ jobs:
# - name: http-client
# working-directory: _examples/http-client
# run: wash build

lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: golangci/golangci-lint-action@v6
with:
version: ${{ env.GOLANGCI_VERSION }}

0 comments on commit 71f9b65

Please sign in to comment.