Move GitHub workflows into single file, split build-and-test

This commit is contained in:
Joakim Frostegård 2022-10-09 22:36:12 +02:00
parent df85a29c58
commit 6854351fb5
6 changed files with 38 additions and 31 deletions

View file

@ -0,0 +1,10 @@
# Not used by Github action, but can be used to run test locally:
# 1. docker build -t aquatic ./path/to/Dockerfile
# 2. docker run aquatic
# 3. On failure, run `docker rmi aquatic -f` and go back to step 1
FROM rust:bullseye
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]