Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix broken workflow #15

Open
wants to merge 5 commits into
base: develop
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ on:

jobs:
deploy:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
container:
image: python:2.7.18-buster
image: python:2.7.18-slim-stretch
steps:
- uses: actions/checkout@v3
- name: Install dependencies
run: |
sudo apt-get install -y libldap2-dev libpython2-dev libc6-dev libsasl2-dev
apt-get install -y libldap2-dev libpython2-dev libc6-dev libsasl2-dev
python -m pip install --upgrade pip
pip install pytest-cov mock coverage unittest2 python-ldap==3.3.1
- name: Run coverage
Expand Down