Skip to content

Commit

Permalink
(runtest) use alpine instead of ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
kritserv committed Oct 5, 2023
1 parent 019c66c commit 26aec74
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/django_app_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,19 @@ on:
jobs:
build-and-test:
if: contains(github.event.commit.message, '(runtest)')
runs-on: ubuntu-latest
runs-on: alpine-latest

steps:
- name: Checkout Code
uses: actions/checkout@v2

- name: Install Docker and Docker Compose
run: |
apk add --no-cache docker docker-compose
service docker start
docker-compose --version
if: success()

- name: Build and Test
working-directory: ./code
run: |
Expand Down

0 comments on commit 26aec74

Please sign in to comment.