Skip to content

feat(ci): Setup CI workflow with code generation test suite #2

feat(ci): Setup CI workflow with code generation test suite

feat(ci): Setup CI workflow with code generation test suite #2

Workflow file for this run

name: test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
permissions:
pull-requests: write
jobs:
my-job:
name: My Job
runs-on: ubuntu-latest
steps:
- name: Print a greeting
env:
MY_VAR: Hi there! My name is
FIRST_NAME: Mona
MIDDLE_NAME: The
LAST_NAME: Octocat
run: |
echo $MY_VAR $FIRST_NAME $MIDDLE_NAME $LAST_NAME.