Skip to content

chore: rescaffold with Substrate #84

chore: rescaffold with Substrate

chore: rescaffold with Substrate #84

Workflow file for this run

name: Test
on:
push:
branches:
- main
- master
pull_request:
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ["3.10", "3.12"]
resolution-strategy: ["highest", "lowest-direct"]
name: Python ${{ matrix.python-version }} (resolution=${{ matrix.resolution-strategy }})
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node.js
uses: actions/setup-node@v4
with:
node-version: 23
- name: Install @devcontainers/cli
run: npm install --location=global @devcontainers/[email protected]
- name: Start Dev Container
run: |
git config --global init.defaultBranch main
PYTHON_VERSION=${{ matrix.python-version }} RESOLUTION_STRATEGY=${{ matrix.resolution-strategy }} devcontainer up --workspace-folder .
- name: Lint package
run: devcontainer exec --workspace-folder . poe lint
- name: Test package
run: devcontainer exec --workspace-folder . poe test