diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0bcf3d8..c2aa697 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -1 +1,23 @@ -# Sample Test Runner +name: Python Tests + +on: [push] + +jobs: + build: + + runs-on: ${{ matrix.os }} + strategy: + matrix: + os: [ubuntu-latest, windows-latest] + python-version: ["3.11"] + + steps: + - uses: actions/checkout@v3 + - name: Set up Python ${{ matrix.python-version }} + uses: actions/setup-python@v4 + with: + python-version: ${{ matrix.python-version }} + - name: Run Tests + run: | + echo "${{ secrets.ENV_FILE }}" > .env + make test