Skip to content

Commit

Permalink
testing gh actions
Browse files Browse the repository at this point in the history
  • Loading branch information
EvilGenius13 committed Sep 26, 2023
1 parent ec846d3 commit ec4fc1e
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
name: CI

on: [push, pull_request]

jobs:
test:
runs-on: ubuntu-latest

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

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1

- name: Cache Docker layers
uses: actions/cache@v2
with:
path: /tmp/.buildx-cache
key: ${{ runner.os }}-buildx-${{ github.sha }}
restore-keys: |
${{ runner.os }}-buildx-
- name: Build and start Docker containers
run: |
docker-compose up -d
- name: Wait for the server to be up
run: |
while ! curl -s http://localhost:5000/ > /dev/null; do
sleep 1
done
- name: Run tests
run: |
# Assuming you're running tests from within a container.
docker exec -t pokeapp python3 -m unittest /poke_app/authtest.py
- name: Stop Docker containers
run: docker-compose down

0 comments on commit ec4fc1e

Please sign in to comment.