Skip to content

Commit

Permalink
Run lint CI job and Ubuntu 22.04 and 18.04
Browse files Browse the repository at this point in the history
  • Loading branch information
gsingh93 committed Jan 5, 2023
1 parent 5767fe3 commit abbb145
Showing 1 changed file with 5 additions and 6 deletions.
11 changes: 5 additions & 6 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,11 @@ on: [push, pull_request]

jobs:
lint:
runs-on: ubuntu-latest
strategy:
matrix:
# Only care about the oldest and newest versions
os: [ubuntu-22.04, ubuntu-18.04]
runs-on: ${{ matrix.os }}
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
Expand All @@ -13,11 +17,6 @@ jobs:
path: ~/.cache/pip
key: ${{ matrix.os }}-cache-pip

- name: Set up Python 3.8
uses: actions/setup-python@v4
with:
python-version: 3.8

- name: Install dependencies
run: |
./setup.sh --user
Expand Down

0 comments on commit abbb145

Please sign in to comment.