Skip to content

CI: ensure action workflow to test code runs #4

CI: ensure action workflow to test code runs

CI: ensure action workflow to test code runs #4

Workflow file for this run

name: Test API Response Package
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Python 3.9
uses: actions/setup-python@v3
with:
python-version: "3.9"
- name: Test with unittest
run: python -m unittest rest_api_response/tests/test_responses.py