Skip to content

Adding py.test tests #7

Adding py.test tests

Adding py.test tests #7

Workflow file for this run

---
name: Capture Step Output
on:
- push
jobs:
capture_output:
runs-on: "ubuntu-24.04"
steps:
- name: Generate random number
id: random
run: |
echo "Generating a random number"
echo "random_number=$RANDOM" >> $GITHUB_OUTPUT
- name: Use output from previous step
run: echo "Random number ${{ steps.random.outputs.random_number }}"