audit: APEX-476 IGateway and INativeTokenPredicate don’t contain all custom functions #50
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: CI | |
on: # yamllint disable-line rule:truthy | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
inputs: | |
unit_test: | |
description: Unit Tests | |
type: boolean | |
default: true | |
workflow_call: | |
inputs: | |
unit_test: | |
description: Unit Tests | |
type: boolean | |
required: true | |
jobs: | |
unit_test: | |
name: Unit Tests | |
uses: ./.github/workflows/unit-test.yml | |
if: | | |
inputs.unit_test || | |
github.event_name == 'pull_request' || | |
(github.event_name == 'push' && github.ref == 'refs/heads/main') |