Skip to content

Merge pull request #115 from Palollo/patch-2 #12

Merge pull request #115 from Palollo/patch-2

Merge pull request #115 from Palollo/patch-2 #12

Workflow file for this run

name: Test EC3
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Check out the codebase.
uses: actions/checkout@v4
- name: Set up Python 3.
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
run: python -m pip install mock ply requests PyYAML jsonschema
- name: Unit tests
run: python -m unittest discover -v -s test -p '*.py'