Add auto-update workflow #4157
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Dev Tests | |
on: | |
schedule: | |
- cron: "0 16 * * *" # Daily at noon EST | |
pull_request: | |
concurrency: # Cancel previous workflows on the same pull request | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
CACHE_NUMBER: 2 # increase to reset cache manually | |
jobs: | |
testing: | |
name: ${{ matrix.os }} # Will read on the dashboard as 'Dev Tests / {os}' | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash -l {0} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
include: | |
- os: ubuntu-latest | |
label: environments/environment-Linux.yml | |
- os: macos-latest # Mac arm64 runner | |
label: environments/environment-MAC-apple-silicon.yml | |
- os: macos-13 # Mac x64 runner | |
label: environments/environment-MAC-intel.yml | |
- os: windows-latest | |
label: environments/environment-Windows.yml | |
steps: | |
- uses: actions/checkout@v4 | |
- run: git fetch --prune --unshallow --tags | |
# see https://github.com/conda-incubator/setup-miniconda#caching-environments | |
- name: Setup Mambaforge | |
uses: conda-incubator/setup-miniconda@v3 | |
with: | |
miniforge-variant: Mambaforge | |
miniforge-version: latest | |
activate-environment: nwb-guide | |
use-mamba: true | |
- name: Set cache date | |
id: get-date | |
run: echo "today=$(/bin/date -u '+%Y%m%d')" >> $GITHUB_OUTPUT | |
shell: bash | |
- name: Cache Conda env | |
uses: actions/cache@v4 | |
with: | |
path: ${{ env.CONDA }}/envs | |
key: conda-${{ runner.os }}-${{ runner.arch }}-${{steps.get-date.outputs.today }}-${{ hashFiles(matrix.label) }}-${{ env.CACHE_NUMBER }} | |
id: cache | |
- if: steps.cache.outputs.cache-hit != 'true' | |
name: Create and activate environment | |
run: mamba env update --name nwb-guide --file ${{ matrix.label }} | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install GUIDE | |
run: npm ci --verbose | |
- if: matrix.os != 'ubuntu-latest' | |
name: Run tests | |
run: npm run test:coverage | |
- if: matrix.os == 'ubuntu-latest' | |
name: Run tests with xvfb | |
run: xvfb-run --auto-servernum --server-args="-screen 0 1280x960x24" -- npm run test:coverage | |
- name: Archive E2E Test Screenshots | |
if: always() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: test-screenshots-${{ matrix.os }} | |
path: docs/assets/tutorials | |
retention-days: 1 | |
- name: Upload coverage reports to Codecov | |
uses: codecov/codecov-action@v4 | |
env: | |
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} | |
with: | |
fail_ci_if_error: true |