Skip to content

Test

Test #37

Workflow file for this run

name: Test
on:
workflow_dispatch:
inputs:
persona:
type: choice
description: "Choose Jellys"
required: false
default: 'Wonny'
options:
- Wonny
- Belty
- Bolby
env:
PERSONA: ${{ github.event.inputs.persona }}
jobs:
build:
environment: goldminer
runs-on: ubuntu-latest
steps:
- name: checkout repo content
uses: actions/checkout@v2
- name: test code
env:
TEST_JSON: ${{ secrets.TEST_JSON }}
run: |
echo $TEST_JSON > my_test.json
echo "Datetime"
date
echo "Saved file"
cat ./my_test.json
echo "End of File"
echo "Environments"
env
echo "ls ....."
ls