Skip to content

Commit

Permalink
base of gh-actions for selenium
Browse files Browse the repository at this point in the history
  • Loading branch information
MarinaProsche committed Feb 29, 2024
1 parent 379ac42 commit 4714576
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/selenium_tests.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Selenium_tests

on: [push]

jobs:
build:
runs-on: ubuntu-20.04

steps:
- uses: actions/checkout@v2

- name: Build system images (non-pulling)
run: |
# build base image
docker build -f Dockerfile_base -t osll/slides-base:20230202 .
- name: Build docker-compose-tests
run: |
cp .env_example .env
docker-compose -f docker-compose-tests.yml build
- name: Run docker-compose-tests
run: |
docker-compose -f docker-compose-tests.yml up -d

0 comments on commit 4714576

Please sign in to comment.