Skip to content

Corrected a silly mistake in requirements.txt #6

Corrected a silly mistake in requirements.txt

Corrected a silly mistake in requirements.txt #6

Workflow file for this run

#name: hello-world
#on: push
#jobs:
# hello-world-job:
# runs-on: ubuntu-latest
# steps:
# - name: Check out repository code
# uses: actions/checkout@v4
# - run: echo "$(cat hello_world.txt)"
name: hello-world
on: push
jobs:
upload-sample-file:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: '3.13'
- name: Install dependencies
run: pip install -r requirements.txt
- name: Run script
working-directory: ./src
run: python create_file.py
- name: Upload sample file
uses: actions/upload-artifact@v4
with:
name: sample-file
path: ./output_files/sample_file.txt