Skip to content

Commit

Permalink
test action start
Browse files Browse the repository at this point in the history
  • Loading branch information
stefanklut committed Nov 23, 2023
1 parent 8c1e175 commit cecd8aa
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
1 change: 1 addition & 0 deletions .github/workflows/black.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Lint
run-name: Deploy to ${{ inputs.deploy_target }} by @${{ github.actor }}

on: [push, pull_request]

Expand Down
24 changes: 24 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit cecd8aa

Please sign in to comment.