try #8
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: "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: "Set up Node" | |
uses: "actions/setup-node@v3" | |
with: | |
node-version: "18.x" | |
- 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" |