You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- name: cli-test
- on:
- push:
- branches:
- - main
- paths:
- - "cli/**"
- pull_request:
- paths:
- - "cli/**"
- jobs:
- test:
- name: Python ${{ matrix.python-version }}
- runs-on: ubuntu-18.04
- strategy:
- matrix:
- python-version:
- - "3.6"
- - "3.8"
- - "3.10"
- steps:
- - uses: actions/checkout@v2
- - uses: actions/setup-python@v2
- with:
- python-version: ${{ matrix.python-version }}
- - run: |
- cd cli
- ./test
|