Skip to content

Update python-app.yml #29

Update python-app.yml

Update python-app.yml #29

Workflow file for this run

# This workflow will install Python dependencies, run tests and lint with a single version of Python
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-python
name: Python application
on:
push:
branches: [ "Austenite" ]
pull_request:
branches: [ "Austenite" ]
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python 3.10
uses: actions/setup-python@v3
with:
python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
pip install pytest
- name: Print working directory
run: pwd
- name: Print current directory contents
run: ls -al
- name: Check memory usage
run: |
free -h
- name: Test with test cases
run: |
cd Test_Cases
pytest -v Case_001.py
pytest -v Case_010.py
pytest -v Case_030.py
pytest -v Case_040.py