Move CI from CircleCI to GitHub Actions
This commit is contained in:
parent
ac87edb0b6
commit
ca430781b4
3 changed files with 14 additions and 12 deletions
|
@ -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
14
.github/workflows/push.yml
vendored
Normal 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 .
|
|
@ -1,7 +1,5 @@
|
||||||
# Ansible role for Restic
|
# Ansible role for Restic
|
||||||
|
|
||||||
[](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.
|
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).
|
It supports S3 backend or SFTP backend and will thus setup the SSH config and SSH private keys (see variables below).
|
||||||
|
|
Loading…
Reference in a new issue