This repository has been archived by the owner on Mar 22, 2024. It is now read-only.
Improve docs and testing clarity #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Pytest Unit Tests | |
on: [push] | |
jobs: | |
build_and_test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
name: Checkout code | |
- name: Test makefile | |
run: make init .env | |
- name: Check .env file | |
run: cat .env | |
- name: Create paths | |
run: make paths | |
- name: Initialize, Build, and Test with Docker | |
run: make test | |
shell: bash |