Skip to content

try different python version #2

try different python version

try different python version #2

Workflow file for this run

name: CICD
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:
jobs:
build:
strategy:
matrix:
python-version:[3.10,3.11,3.12]

Check failure on line 13 in .github/workflows/CICD.yml

View workflow run for this annotation

GitHub Actions / CICD

Invalid workflow file

The workflow is not valid. .github/workflows/CICD.yml (Line: 13, Col: 9): Unexpected value 'python-version:[3.10,3.11,3.12] os:[ubuntu-latest]'
os:[ubuntu-latest]
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v3
- name: Get Python ${{ matrix.python-version }}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
- name: install packages
run: make install
- name: lint
run: make lint
- name: test
run: make test
- name: format
run: make format