mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-24 17:17:51 -05:00
22 lines
343 B
YAML
22 lines
343 B
YAML
version: 2
|
|
jobs:
|
|
build:
|
|
docker:
|
|
- image: circleci/buildpack-deps
|
|
steps:
|
|
- checkout
|
|
- run:
|
|
name: dep
|
|
command: sudo apt-get install -y tcl
|
|
- run:
|
|
name: Build
|
|
command: make
|
|
- run:
|
|
name: Test
|
|
command: make test
|
|
workflows:
|
|
version: 2
|
|
workflow:
|
|
jobs:
|
|
- build
|