mirror of
https://github.com/ivanizag/izapple2.git
synced 2024-12-27 11:30:02 +00:00
12 lines
221 B
YAML
12 lines
221 B
YAML
version: 2
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: cimg/go:1.18
|
|
steps:
|
|
- checkout
|
|
- run: sudo apt update
|
|
- run: sudo apt install libsdl2-dev
|
|
- run: go get -d ./...
|
|
- run: go test ./...
|