From 70aa911ad43b4e405493828d04c012aae29c39ae Mon Sep 17 00:00:00 2001 From: Michael Kranzlein <8162250+mkranzlein@users.noreply.github.com> Date: Sun, 20 Aug 2023 17:05:24 -0400 Subject: [PATCH] Create main.yml --- .github/workflows/main.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .github/workflows/main.yml diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml new file mode 100644 index 0000000..1ef1043 --- /dev/null +++ b/.github/workflows/main.yml @@ -0,0 +1,27 @@ +name: HiPool + +on: push + +jobs: + main: + strategy: + matrix: + python: [3.9, 3.10] + os: [ubuntu-latest, windows-latest] + runs-on: ${{ matrix.os }} + + steps: + - name: Checkout + - uses: actions/checkout@v3 + - name: Set up environment + - uses: mamba-org/setup-micromamba@v1 + with: + micromamba-version: '1.3.1-0' + environment-file: environment.yml + init-shell: >- + bash + powershell + cache-environment: true + post-cleanup: 'all' + - name: Run tests + run: pytest