Skip to content

Commit

Permalink
Removed unused xapian action
Browse files Browse the repository at this point in the history
  • Loading branch information
TheoDurr committed Nov 5, 2023
1 parent fa75886 commit f234f94
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 15 deletions.
8 changes: 4 additions & 4 deletions .github/actions/setup_project/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,13 @@ runs:
- name: Install apt packages
uses: awalsh128/cache-apt-pkgs-action@latest
with:
packages: gettext libxapian-dev libgraphviz-dev
version: 1.0 # increment to reset cache
packages: gettext libgraphviz-dev
version: 1.0 # increment to reset cache

- name: Install dependencies
run: |
sudo apt update
sudo apt install gettext libxapian-dev libgraphviz-dev
sudo apt install gettext libgraphviz-dev
shell: bash

- name: Set up python
Expand All @@ -25,7 +25,7 @@ runs:
uses: actions/cache@v3
with:
path: ~/.local
key: poetry-0 # increment to reset cache
key: poetry-0 # increment to reset cache

- name: Install Poetry
if: steps.cached-poetry.outputs.cache-hit != 'true'
Expand Down
10 changes: 0 additions & 10 deletions .github/actions/setup_xapian/action.yml

This file was deleted.

1 change: 0 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ jobs:
- name: Check out repository
uses: actions/checkout@v3
- uses: ./.github/actions/setup_project
- uses: ./.github/actions/setup_xapian
- uses: ./.github/actions/compile_messages
- name: Run tests
run: poetry run coverage run ./manage.py test
Expand Down

0 comments on commit f234f94

Please sign in to comment.