Skip to content

Commit

Permalink
using ubuntu-latest runner until docker-compose is installed on our s…
Browse files Browse the repository at this point in the history
…elf-hosted runner
  • Loading branch information
AronBuzogany committed Feb 23, 2024
1 parent 769e77e commit df0d112
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
working-directory: ./frontend
run: npm run lint
Backend-tests:
runs-on: self-hosted
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

Expand All @@ -51,12 +51,6 @@ jobs:
working-directory: ./backend
run: pip3 install -r requirements.txt && pip3 install -r dev-requirements.txt

- name: Install Docker Compose
run: |
curl -L "https://github.com/docker/compose/releases/download/1.29.2/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose
docker-compose --version
- name: Running tests
working-directory: ./backend
run: bash ./run_tests.sh
Expand Down

0 comments on commit df0d112

Please sign in to comment.