Skip to content

Test pr3

Test pr3 #46

Workflow file for this run

# The "display name", shown in the GitHub UI
name: Build and test
# Trigger, run on push on any branch
on:
workflow_dispatch:
inputs:
config-value:
required: true
type: string
pull_request:
jobs:
lint:
name: "Lint application"
runs-on: 'ubuntu-latest'
steps:
- name: Verify formatting
run: |
no_unformatted_files="$(gofmt -l $(git ls-files '*.go') | wc -l)"
exit "$no_unformatted_files"
test:
uses: ./.github/workflows/reusable-test.yml
compositeTest:
name: "Run composite action"
runs-on: 'ubuntu-latest'
steps:
- uses: actions/checkout@v4
- id: foo
uses: ./actions/test-composite/action.yml
with:
who-to-greet: 'Mona the Octocat'