Skip to content

Commit

Permalink
Build(deps): Bump the actions group with 6 updates (#25)
Browse files Browse the repository at this point in the history
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Eric Larson <[email protected]>
  • Loading branch information
dependabot[bot] and larsoner authored Nov 6, 2024
1 parent ba72161 commit 68e3cd7
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ jobs:
package:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v4
uses: actions/setup-python@v5
with:
python-version: '3.10'
- name: Install dependencies
Expand All @@ -34,7 +34,7 @@ jobs:
- name: Check env vars
run: |
echo "Triggered by: ${{ github.event_name }}"
- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: dist
path: dist
Expand All @@ -44,7 +44,7 @@ jobs:
needs: package
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: dist
path: dist
Expand Down
10 changes: 6 additions & 4 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ jobs:
python: '3.10'
kind: 'stable'
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- uses: pyvista/setup-headless-display-action@main
- uses: mamba-org/setup-micromamba@v1
- uses: mamba-org/setup-micromamba@v2
with:
micromamba-version: '1.3.1-0'
environment-file: environment.yml
Expand All @@ -55,5 +55,7 @@ jobs:
- run: python -c "from mayavi import mlab; mlab.test_plot3d()"
- run: python -c "import mne; mne.datasets.testing.data_path(verbose=True)"
- run: pytest --tb=short --cov=mne_kit_gui --cov-report=xml --cov-report=html -vvv mne_kit_gui
- uses: codecov/codecov-action@v3
if: success()
- uses: codecov/codecov-action@v4
with:
token: ebcd818a-7a71-470d-b667-7cd9c3003c7d
if: success() || failure()

0 comments on commit 68e3cd7

Please sign in to comment.