fixed few lines and added a new edspy_dev_step pre wizard #101
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: Test | |
on: | |
push: | |
branches: | |
- main | |
- master | |
pull_request: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
python-version: ["3.10"] | |
name: Python ${{ matrix.python-version }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 21 | |
- 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 }} devcontainer up --workspace-folder . | |
- name: Test package | |
run: devcontainer exec --workspace-folder . poe test | |
- name: Upload coverage | |
uses: codecov/codecov-action@v3 | |
with: | |
files: reports/coverage.xml |