Skip to content

Commit

Permalink
update ci
Browse files Browse the repository at this point in the history
  • Loading branch information
balajtimate committed Oct 16, 2023
1 parent 5c427ec commit 5d720b0
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
shell: bash -l {0}

steps:
- name: check out repository
- name: Check out repository
uses: actions/checkout@v4

- name: Setup Conda/Mamba
Expand All @@ -32,7 +32,7 @@ jobs:
- name: Update scrnasim env with dev packages
run: mamba env update -n scrnasim -f environment-dev.yml

- name: display environment info
- name: Display environment info
run: |
conda info -a
conda list
Expand All @@ -54,10 +54,10 @@ jobs:

steps:

- name: checkout repository
- name: Checkout repository
uses: actions/checkout@v4

- name: setup Conda/Mamba
- name: Setup Conda/Mamba
uses: conda-incubator/setup-miniconda@v2
with:
mamba-version: "*"
Expand All @@ -66,20 +66,20 @@ jobs:
environment-file: environment.yml
auto-activate-base: false

- name: update scrnasim env with dev packages
- name: Update scrnasim env with dev packages
run: mamba env update -n scrnasim -f environment-dev.yml

- name: display environment info
- name: Display environment info
run: |
conda info -a
conda list
- name: run unit tests
- name: Run unit tests
run: |
coverage run --source scRNAsim_toolz -m pytest
coverage xml
- name: submit coverage report
- name: Submit coverage report
uses: codecov/codecov-action@v2
with:
token: ${{ secrets.CODECOV_TOKEN }}
Expand All @@ -96,14 +96,14 @@ jobs:
steps:

- name: check out repository
- name: Check out repository
uses: actions/checkout@v4

- name: generate tag
- name: Generate tag
run: |
echo "TAG=$(date '+%Y%m%d')" >> $GITHUB_ENV
- name: build and publish image
- name: Build and publish image
id: docker
uses: philips-software/[email protected]
with:
Expand Down

0 comments on commit 5d720b0

Please sign in to comment.