You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
pwndbg/.github/workflows/docker.yml

16 lines
311 B
YAML

name: Docker build
on: [push, pull_request]
jobs:
docker:
runs-on: ubuntu-latest
timeout-minutes: 10
steps:
- uses: actions/checkout@v3
- name: Build the Docker image
run: docker-compose build main
- name: Run the tests in Docker
run: docker-compose run main ./tests.sh