Remove GitHub CI
This commit is contained in:
parent
322843b3c1
commit
65eb6efe5a
2 changed files with 1 additions and 35 deletions
34
.github/workflows/ci.yml
vendored
34
.github/workflows/ci.yml
vendored
|
@ -1,34 +0,0 @@
|
|||
name: CI
|
||||
|
||||
on: [push]
|
||||
|
||||
jobs:
|
||||
ansible:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Set up Python 3.7
|
||||
uses: actions/setup-python@v1
|
||||
with:
|
||||
python-version: 3.7
|
||||
- uses: actions/cache@v1
|
||||
with:
|
||||
path: ~/.cache/pip
|
||||
key: pip-${{ hashFiles('ansible/requirements.txt') }}-${{ hashFiles('ansible/dev-requirements.txt') }}
|
||||
- name: Install dependencies
|
||||
run: ./scripts/ansible/setup.sh
|
||||
- name: Run linters
|
||||
run: ./scripts/ansible/lint.sh
|
||||
|
||||
terraform:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v1
|
||||
- name: Install terraform
|
||||
uses: hashicorp/setup-terraform@v1
|
||||
with:
|
||||
terraform_version: "0.13.0"
|
||||
- name: Initialize Terraform
|
||||
run: ./scripts/terraform/terraform.sh init -backend=false
|
||||
- name: Lint
|
||||
run: ./scripts/terraform/lint.sh
|
|
@ -1,6 +1,6 @@
|
|||
# Infrastructure
|
||||
|
||||
![CI Status](https://github.com/realorangeone/infrastructure/workflows/CI/badge.svg)
|
||||
![CI](https://git.theorangeone.net/sys/infrastructure/badges/master/pipeline.svg)
|
||||
|
||||
## Requirements
|
||||
|
||||
|
|
Loading…
Reference in a new issue