Skip to content

fix(proxy-verifier): update default icon_url path to be 'apple-touch-… #65

fix(proxy-verifier): update default icon_url path to be 'apple-touch-…

fix(proxy-verifier): update default icon_url path to be 'apple-touch-… #65

on:
push:
branches:
- 'main'
tags:
- 'proxy-verifier/v*'
paths:
- proxy-verifier/**
- .github/workflows/proxy-verifier.yml
- .github/workflows/_*.yml
- .github/actions/**
pull_request:
paths:
- proxy-verifier/**
- .github/workflows/proxy-verifier.yml
- .github/workflows/_*.yml
- .github/actions/**
name: Test, lint and docker (proxy-verifier)
defaults:
run:
working-directory: proxy-verifier
jobs:
test:
name: Unit, doc and integration tests
runs-on: ubuntu-latest
steps:
- name: Checkout sources
uses: actions/checkout@v4
- name: Setup
uses: ./.github/actions/setup
with:
working-directory: proxy-verifier
- name: Unit tests
run: RUST_BACKTRACE=1 RUST_LOG=info cargo test --locked --workspace --all-features --lib --bins -- --nocapture
if: success() || failure()
- name: Doc tests
run: cargo test --locked --workspace --all-features --doc
if: success() || failure()
- name: Integration tests
run: RUST_BACKTRACE=1 RUST_LOG=info cargo test --locked --workspace --test '*' -- --nocapture --include-ignored
if: success() || failure()
lint:
name: Linting
uses: ./.github/workflows/_linting.yml
with:
working-directory: proxy-verifier
docker:
name: Docker build and docker push
needs:
- test
- lint
if: |
always() &&
(needs.test.result == 'success' || needs.test.result == 'cancelled') &&
(needs.lint.result == 'success' || needs.lint.result == 'cancelled')
uses: ./.github/workflows/_docker-build-push.yml
with:
service-name: proxy-verifier
push-swagger:
if: github.event_name == 'push' && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags'))
uses: ./.github/workflows/_push_swagger.yml
with:
service_name: 'proxy-verifier'
swagger_path: 'proxy-verifier/proxy-verifier-proto/swagger/v1/proxy-verifier.swagger.yaml'
secrets:
api_token_github: ${{ secrets.BLOCKSCOUT_BOT_TOKEN }}