diff --git a/.github/workflows/ci_reuse_go.yml b/.github/workflows/ci_reuse_go.yml index 8b32928..046d261 100644 --- a/.github/workflows/ci_reuse_go.yml +++ b/.github/workflows/ci_reuse_go.yml @@ -48,6 +48,12 @@ jobs: go-version: 'stable' cache: false + # Install TinyGo + - name: Install TinyGo + run: | + wget https://github.com/tinygo-org/tinygo/releases/download/v0.32.0/tinygo_0.32.0_amd64.deb + sudo dpkg -i tinygo_0.34.0_amd64.deb + - name: Check pull request file size if: github.event_name == 'pull_request' run: curl -s https://raw.githubusercontent.com/untillpro/ci-action/master/scripts/checkPR.sh | bash diff --git a/.github/workflows/ci_reuse_go_cas.yml b/.github/workflows/ci_reuse_go_cas.yml index 886aa40..b99af48 100644 --- a/.github/workflows/ci_reuse_go_cas.yml +++ b/.github/workflows/ci_reuse_go_cas.yml @@ -43,6 +43,12 @@ jobs: - name: Checkout uses: actions/checkout@v4 + # Install TinyGo + - name: Install TinyGo + run: | + wget https://github.com/tinygo-org/tinygo/releases/download/v0.32.0/tinygo_0.32.0_amd64.deb + sudo dpkg -i tinygo_0.34.0_amd64.deb + - name: Check pull request file size if: github.event_name == 'pull_request' run: curl -s https://raw.githubusercontent.com/untillpro/ci-action/master/scripts/checkPR.sh | bash diff --git a/.github/workflows/ci_reuse_go_pr.yml b/.github/workflows/ci_reuse_go_pr.yml index 20cd6dd..1d41032 100644 --- a/.github/workflows/ci_reuse_go_pr.yml +++ b/.github/workflows/ci_reuse_go_pr.yml @@ -45,6 +45,12 @@ jobs: go-version: 'stable' cache: false + # Install TinyGo + - name: Install TinyGo + run: | + wget https://github.com/tinygo-org/tinygo/releases/download/v0.32.0/tinygo_0.32.0_amd64.deb + sudo dpkg -i tinygo_0.34.0_amd64.deb + - name: Checkout uses: actions/checkout@v4 with: