diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 548e3a9..0000000 --- a/.circleci/config.yml +++ /dev/null @@ -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 . diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml new file mode 100644 index 0000000..10ae1fe --- /dev/null +++ b/.github/workflows/push.yml @@ -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 . diff --git a/README.md b/README.md index ccbb064..821fc4b 100644 --- a/README.md +++ b/README.md @@ -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).