Skip to content

update config files for forge-py add pytest to test configs make sure… #1

update config files for forge-py add pytest to test configs make sure…

update config files for forge-py add pytest to test configs make sure… #1

Workflow file for this run

name: Test Configs
on:
push:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out the code
uses: actions/checkout@v3
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
- name: Run pytest
run: pytest