Files
BM-A0/.gitea/workflows/gitea.yaml
Johannes Kattnig 62767fcbd2
All checks were successful
Gitea Actions Demo / Explore-Gitea-Actions (push) Successful in 23s
Python Script Test Pipeline / Test_Python_Script (push) Successful in 2m29s
Changed Action file 4
2024-12-03 00:51:04 +01:00

24 lines
696 B
YAML

name: "Python Script Test Pipeline"
run-name: ${{ gitea.actor }} running Python script test pipeline 🚀
on: [push]
jobs:
Test_Python_Script:
runs-on: ubuntu-latest
steps:
- name: "Checkout Code"
uses: actions/checkout@v3 # Checkout the code
- name: "Set up Python"
run: |
apt-get update
apt-get install -y python3 python3-pip
- name: "Install Python Libraries"
run: |
pip3 install numpy imageio scikit-image scipy
- name: "Run Python Script"
run: |
python3 interpolation_error.py > output.txt
- name: "Compare Output"
run: |
diff output.txt reference_output.txt