Merge pull request #3 from joshlay/actions_cachepip

pylint workflow: cache pip, update pysetup action
This commit is contained in:
Josh Lay 2023-10-15 00:41:04 -05:00 committed by GitHub
commit ebb46f384c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -11,9 +11,10 @@ jobs:
steps: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- name: Set up Python ${{ matrix.python-version }} - name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v3 uses: actions/setup-python@v4
with: with:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
cache: 'pip'
- name: Install dependencies - name: Install dependencies
run: | run: |
sudo apt install -y libsystemd-dev sudo apt install -y libsystemd-dev