pwndbg/.github/workflows/docker.yml

16 lines
311 B
YAML
Raw Normal View History

2022-09-05 08:19:55 +08:00
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