Skip to content

maybe?

maybe? #5

Workflow file for this run

name: Python CI
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v4
with:
python-version: '3.9'
- name: Log directory structure
run: |
pwd
ls -R
- name: pip requirements
run: pip install -r requirements.txt
- name: Run test script
run: python -u github_workflows/action.py
- name: Print name
run: echo "Hello ${{ secrets.ENV_TEST }}"