diff --git a/.github/workflows/ci_reuse_go.yml b/.github/workflows/ci_reuse_go.yml index ede9d77..02dd4af 100644 --- a/.github/workflows/ci_reuse_go.yml +++ b/.github/workflows/ci_reuse_go.yml @@ -39,6 +39,12 @@ jobs: go-version: 'stable' cache: false + # Install TinyGo + - name: Install TinyGo + run: | + wget https://github.com/tinygo-org/tinygo/releases/download/v0.31.2/tinygo_0.31.2_amd64.deb + sudo dpkg -i tinygo_0.31.2_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 417b603..f843e87 100644 --- a/.github/workflows/ci_reuse_go_cas.yml +++ b/.github/workflows/ci_reuse_go_cas.yml @@ -28,6 +28,12 @@ jobs: go-version: 'stable' cache: false + # Install TinyGo + - name: Install TinyGo + run: | + wget https://github.com/tinygo-org/tinygo/releases/download/v0.31.2/tinygo_0.31.2_amd64.deb + sudo dpkg -i tinygo_0.31.2_amd64.deb + - name: Checkout uses: actions/checkout@v4 diff --git a/.github/workflows/ci_reuse_go_norebuild.yml b/.github/workflows/ci_reuse_go_norebuild.yml index 5ecdcec..b28306e 100644 --- a/.github/workflows/ci_reuse_go_norebuild.yml +++ b/.github/workflows/ci_reuse_go_norebuild.yml @@ -28,6 +28,12 @@ jobs: go-version: 'stable' cache: false + # Install TinyGo + - name: Install TinyGo + run: | + wget https://github.com/tinygo-org/tinygo/releases/download/v0.31.2/tinygo_0.31.2_amd64.deb + sudo dpkg -i tinygo_0.31.2_amd64.deb + - name: Checkout uses: actions/checkout@v4