mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Add circleCI yml file
This commit is contained in:
parent
805d5c8b09
commit
0189eb86a1
23
circle.yml
Normal file
23
circle.yml
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
version: 2
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
docker:
|
||||||
|
- image: python:3-alpine
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- run:
|
||||||
|
name: Validate SQF And Config style
|
||||||
|
command: python tools/sqf_validator.py && python tools/config_style_checker.py
|
||||||
|
deployment:
|
||||||
|
docker:
|
||||||
|
- image: python:3-alpine
|
||||||
|
branch: master
|
||||||
|
requires:
|
||||||
|
- build
|
||||||
|
steps:
|
||||||
|
- checkout
|
||||||
|
- deploy:
|
||||||
|
name: Deploy
|
||||||
|
command: |
|
||||||
|
pip install pygithub pygithub3
|
||||||
|
python3 tools/deploy.py
|
Loading…
Reference in New Issue
Block a user