diff --git a/.github/workflows/.yaml b/.github/workflows/.yaml new file mode 100644 index 00000000..e69de29b diff --git a/.github/workflows/unittest.yaml b/.github/workflows/unittest.yaml new file mode 100644 index 00000000..f4ee17f9 --- /dev/null +++ b/.github/workflows/unittest.yaml @@ -0,0 +1,16 @@ +name: Continuous Integration +on: [push, pull_request] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: 3.12.0 + architecture: x64 + - name: Install dependencies + run: pip install -r requirements.txt + - name: Run Tests + run: python -m pytest diff --git a/.github/workflows/unittests b/.github/workflows/unittests new file mode 100644 index 00000000..5a72af72 --- /dev/null +++ b/.github/workflows/unittests @@ -0,0 +1,17 @@ +name: Continuous Integration +on: [push] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Set up Python + uses: actions/setup-python@v2 + with: + python-version: 3.12.0 + architecture: x64 + - name: Install dependencies + run: pip install -r requirements.txt + - name: Run Tests + run: python -m pytest + diff --git a/.github/workflows/unittests.yaml b/.github/workflows/unittests.yaml new file mode 100644 index 00000000..e69de29b