Skip to content

fix(bricks): overwrite the brick variables of an app #187

fix(bricks): overwrite the brick variables of an app

fix(bricks): overwrite the brick variables of an app #187

Workflow file for this run

name: Run Go Tests
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
go-test-internal:
runs-on: ubuntu-latest
steps:
- name: install dependencies
run: |
sudo apt-get update
sudo apt-get install -y android-tools-adb
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Run `internal` tests
run: go tool task test:internal
go-test-pkg:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
steps:
- name: install dependencies [Linux]
if: runner.os == 'Linux'
run: |
sudo apt-get update
sudo apt-get install -y android-tools-adb
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Run `pkg` tests
run: go tool task test:pkg