Cleanup CI configs

This commit is contained in:
Ivan Kravets
2022-05-19 12:02:52 +03:00
parent 0c4c4ac657
commit be0acaed40
2 changed files with 6 additions and 7 deletions

View File

@ -14,15 +14,18 @@ jobs:
python-version: "3.6" python-version: "3.6"
- os: windows-latest - os: windows-latest
python-version: "3.10" python-version: "3.10"
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v3
with: with:
submodules: "recursive" submodules: "recursive"
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2 uses: actions/setup-python@v3
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
- name: Install dependencies - name: Install dependencies
run: | run: |
python -m pip install --upgrade pip python -m pip install --upgrade pip
@ -31,6 +34,7 @@ jobs:
- name: Python Lint - name: Python Lint
run: | run: |
tox -e lint tox -e lint
- name: Integration Tests - name: Integration Tests
env: env:
TEST_EMAIL_LOGIN: ${{ secrets.TEST_EMAIL_LOGIN }} TEST_EMAIL_LOGIN: ${{ secrets.TEST_EMAIL_LOGIN }}

View File

@ -34,11 +34,6 @@ jobs:
config_dir: "OpenMQTTGateway" config_dir: "OpenMQTTGateway"
env_name: "esp32-m5atom" env_name: "esp32-m5atom"
os: [ubuntu-latest, windows-latest, macos-latest] os: [ubuntu-latest, windows-latest, macos-latest]
exclude:
- os: macos-latest
project: esphome
- os: windows-latest
project: esphome
runs-on: ${{ matrix.os }} runs-on: ${{ matrix.os }}
steps: steps: