Skip to content

chore: setup automated releasing #1

chore: setup automated releasing

chore: setup automated releasing #1

Workflow file for this run

name: Build
on:
- push
- pull_request
- workflow_dispatch
jobs:
build:
runs-on: ubuntu-20.04
strategy:
fail-fast: false
matrix:
python-version: [3.6, 3.7, 3.8, 3.9, "3.10", "3.11"]
steps:
steps:

Check failure on line 17 in .github/workflows/test.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/test.yml

Invalid workflow file

You have an error in your yaml syntax on line 17
- uses: actions/checkout@v2
- name: Install node
uses: actions/setup-node@v1
with:
node-version: "14.x"
registry-url: "https://registry.npmjs.org"
- name: Install Python
uses: actions/setup-python@v2
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install twine wheel jupyter-packaging jupyterlab
- name: Build
run: |
python setup.py bdist_wheel
- name: Build
run: |
python setup.py bdist_wheel
- name: Install
run: pip install dist/*.whl
- name: Import
run: python -c "from ipyvuetify import Btn"