Skip to content

build(deps): Bump pillow from 10.2.0 to 10.3.0 in /scripts/qa/reporting #2

build(deps): Bump pillow from 10.2.0 to 10.3.0 in /scripts/qa/reporting

build(deps): Bump pillow from 10.2.0 to 10.3.0 in /scripts/qa/reporting #2

Workflow file for this run

name: Build
# Tests runs different tests (test_abci_apps, test_abci_cli, test_apps)
# This workflow runs on every push to main or release branch and every pull requests
# All jobs will pass without running if no *{.go, .mod, .sum} files have been modified
on:
pull_request:
merge_group:
push:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }}
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
goarch: ["arm", "amd64"]
goos: ["linux"]
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- id: filter
uses: dorny/paths-filter@v2
with:
filters: |
code:
- '**/*.go'
- 'Makefile'
- 'go.*'
- run: echo "GO_VERSION=$(cat .github/workflows/go-version.env | grep GO_VERSION | cut -d '=' -f2)" >> $GITHUB_ENV
if: steps.filter.outputs.code == 'true'
- uses: actions/setup-go@v5
if: steps.filter.outputs.code == 'true'
with:
go-version: ${{ env.GO_VERSION }}
- name: install
if: steps.filter.outputs.code == 'true'
run: GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} make build
test_abci_cli:
runs-on: ubuntu-latest
needs: build
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- id: filter
uses: dorny/paths-filter@v2
with:
filters: |
code:
- '**/*.go'
- 'Makefile'
- 'go.*'
- run: echo "GO_VERSION=$(cat .github/workflows/go-version.env | grep GO_VERSION | cut -d '=' -f2)" >> $GITHUB_ENV
if: steps.filter.outputs.code == 'true'
- uses: actions/setup-go@v5
if: steps.filter.outputs.code == 'true'
with:
go-version: ${{ env.GO_VERSION }}
- name: install
if: steps.filter.outputs.code == 'true'
run: make install_abci
- run: abci/tests/test_cli/test.sh
if: steps.filter.outputs.code == 'true'
shell: bash
test_apps:
runs-on: ubuntu-latest
needs: build
timeout-minutes: 5
steps:
- uses: actions/checkout@v4
- id: filter
uses: dorny/paths-filter@v2
with:
filters: |
code:
- '**/*.go'
- 'Makefile'
- 'go.*'
- run: echo "GO_VERSION=$(cat .github/workflows/go-version.env | grep GO_VERSION | cut -d '=' -f2)" >> $GITHUB_ENV
if: steps.filter.outputs.code == 'true'
- uses: actions/setup-go@v5
if: steps.filter.outputs.code == 'true'
with:
go-version: ${{ env.GO_VERSION }}
- name: install
if: steps.filter.outputs.code == 'true'
run: make install install_abci
- name: test_apps
if: steps.filter.outputs.code == 'true'
run: test/app/test.sh
shell: bash