Rename overlay zypper-migration plugin with -ruby suffix #418
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: CILint | |
on: [push] | |
jobs: | |
build: | |
#runs-on: ubuntu-latest | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
python-version: [3.6, 3.8] | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Python${{ matrix.python-version }} | |
uses: actions/setup-python@v2 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Install | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install tox==2.9.1 | |
- name: Tox | |
run: | | |
tox |