Browse Source

[FIX] sudo apt

pull/1/head
Gao Enhao 2 years ago
parent
commit
d0ea053960
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      .github/workflows/build-and-test.yaml

+ 3
- 3
.github/workflows/build-and-test.yaml View File

@@ -21,13 +21,13 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Display python version
run: python -c "import sys; print(sys.version)"
- name: Install prolog
run: |
sudo apt-get install swi-prolog
- name: Install package dependencies
run: |
python -m pip install --upgrade pip
pip install -r build_tools/requirements.txt
- name: Install prolog
run: |
apt-get install swi-prolog
- name: Install
run: pip install -v -e .
- name: Run tests


Loading…
Cancel
Save