Compare commits

...

2 commits

Author SHA1 Message Date
ebb46f384c
Merge pull request #3 from joshlay/actions_cachepip
pylint workflow: cache pip, update pysetup action
2023-10-15 00:41:04 -05:00
5b1ec98a86
pylint workflow: cache pip, update pysetup action 2023-10-15 00:30:19 -05:00

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