From fd08237abe6b98ce1ccfe853f90a9eaa6a5e0e28 Mon Sep 17 00:00:00 2001 From: Erik Nyquist Date: Mon, 11 Dec 2023 22:50:29 -0800 Subject: [PATCH] Add github workflow configs --- .github/workflows/coverage.yml | 30 ++++++++++++++++++++++++++++++ .github/workflows/tests.yml | 29 +++++++++++++++++++++++++++++ 2 files changed, 59 insertions(+) create mode 100644 .github/workflows/coverage.yml create mode 100644 .github/workflows/tests.yml diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml new file mode 100644 index 0000000..f81c605 --- /dev/null +++ b/.github/workflows/coverage.yml @@ -0,0 +1,30 @@ +name: Test coverage +on: [push] +jobs: + test: + runs-on: ubuntu-latest + + strategy: + matrix: + python-version: [3.9] + + steps: + # Checkout the latest code from the repo + - name: Checkout repo + uses: actions/checkout@v2 + # Setup which version of Python to use + - name: Set Up Python ${{ matrix.python-version }} + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python-version }} + # Display the Python version being used + - name: Display Python version + run: python -c "import sys; print(sys.version)" + # Install the package using the setup.py + - name: Install package + run: python setup.py install + - name: Install coverage + run: python -m pip install coverage + # Run the tests + - name: Run coverage script + run: python code_coverage.py diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..10ed907 --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,29 @@ +name: Tests +on: [push] +jobs: + test: + runs-on: ubuntu-latest + + strategy: + matrix: + # Run in all these versions of Python + python-version: [3.7, 3.8, 3.9, 3.10] + + steps: + # Checkout the latest code from the repo + - name: Checkout repo + uses: actions/checkout@v2 + # Setup which version of Python to use + - name: Set Up Python ${{ matrix.python-version }} + uses: actions/setup-python@v2 + with: + python-version: ${{ matrix.python-version }} + # Display the Python version being used + - name: Display Python version + run: python -c "import sys; print(sys.version)" + # Install the package using the setup.py + - name: Install package + run: python setup.py install + # Run the tests + - name: Run tests + run: python setup.py test