Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
NgoKimPhu committed Jul 30, 2024
1 parent f94d8fc commit 800e3be
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: 'Test'

on:
push:
workflow_dispatch:
inputs:
a:
type: string
b:
type: string

jobs:
test:
env:
a: 1
b: 2
runs-on: ubuntu-latest
steps:
- name: Test
# language=bash
run: |
echo "${{ inputs.a || inputs.b }}"
echo "${{ env.a || env.b }}"

0 comments on commit 800e3be

Please sign in to comment.