Skip to content

Commit

Permalink
debug ci
Browse files Browse the repository at this point in the history
  • Loading branch information
juanep97 committed Dec 13, 2023
1 parent 20e381f commit 4e04ca6
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,20 @@ on:
jobs:
tests:
name: test coverage
runs-on: ubuntu-latest
strategy:
matrix:
include:
- python-version: "3.11"
os: ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- name: checkout repo
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: show the code 1
run: |
cat mutis/signal.py
- name: create and activate env
uses: conda-incubator/setup-miniconda@v3
with:
Expand All @@ -23,7 +33,7 @@ jobs:
- name: install mutis
run: |
pip install -e .
- name: show the code
- name: show the code 2
run: |
cat mutis/signal.py
- name: test coverage
Expand Down

0 comments on commit 4e04ca6

Please sign in to comment.