Skip to content

Try

Try #3

Workflow file for this run

name: "Python CI"
on:
push:
pull_request:
jobs:
build:
runs-on: "ubuntu-latest"
strategy:
matrix:
python-version: ["3.10"]
steps:
- uses: "actions/checkout@v2"
- name: "Set up Python ${{ matrix.python-version }}"
uses: "actions/setup-python@v2"
with:
python-version: "${{ matrix.python-version }}"
- name: "Install"
run: "make install"
# - name: "Format check"
# run: "make format-check"
# - name: "Lint"
# run: "make lint"
# - name: "Type check"
# run: "make type-check"
# - name: "Unit test"
# run: "make utest"
- name: "Integration test"
# run: "make itest"
run: "npx --help"
with:

Check failure on line 41 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / Python CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yml (Line: 41, Col: 9): Unexpected value 'with'
node-version: "18.x"