diff --git a/.github/workflows/black.yml b/.github/workflows/black.yml index 2c31bad..0131085 100644 --- a/.github/workflows/black.yml +++ b/.github/workflows/black.yml @@ -1,4 +1,5 @@ name: Lint +run-name: Deploy to ${{ inputs.deploy_target }} by @${{ github.actor }} on: [push, pull_request] diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml new file mode 100644 index 0000000..e1b9c9e --- /dev/null +++ b/.github/workflows/tests.yml @@ -0,0 +1,24 @@ +name: Unittests +run-name: Deploy to ${{ inputs.deploy_target }} by @${{ github.actor }} + +on: [push, pull_request] + +jobs: + unittests: + runs-on: ubuntu-latest + defaults: + run: + shell: bash -el {0} + steps: + - uses: actions/checkout@v3 + - name: Setup Mamba + uses: conda-incubator/setup-miniconda@v2 + with: + use-mamba: true + miniforge-version: "latest" + environment-file: environment.yml + + - name: Conda info + run: conda info + - name: Conda list + run: conda list