Move CI from CircleCI to GitHub Actions

This commit is contained in:
Stanislas Lange 2020-04-22 20:26:16 +02:00
parent ac87edb0b6
commit ca430781b4
3 changed files with 14 additions and 12 deletions

View file

@ -1,10 +0,0 @@
version: 2
jobs:
build:
docker:
- image: python:3-slim
steps:
- checkout
- run: pip install ansible-lint
- run: ansible-lint --version
- run: ansible-lint .

14
.github/workflows/push.yml vendored Normal file
View file

@ -0,0 +1,14 @@
name: ansible-lint
on: [push]
jobs:
build:
runs-on: ubuntu-latest
name: ansible-lint
steps:
- uses: actions/checkout@master
- uses: actions/setup-python@v1
- run: pip install ansible-lint
- run: ansible-lint --version
- run: ansible-lint .

View file

@ -1,7 +1,5 @@
# Ansible role for Restic
[![CircleCI](https://circleci.com/gh/angristan/ansible-restic.svg?style=svg)](https://circleci.com/gh/angristan/ansible-restic)
This role will setup [Restic](https://restic.net/) backups on a Debian/Ubuntu machine using a systemd service and timer.
It supports S3 backend or SFTP backend and will thus setup the SSH config and SSH private keys (see variables below).