mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
Switch to github actions
This commit is contained in:
parent
fc31195fa0
commit
51fd19c315
33
.github/workflows/ansible.yml
vendored
Normal file
33
.github/workflows/ansible.yml
vendored
Normal file
@ -0,0 +1,33 @@
|
||||
---
|
||||
name: Ansible Role
|
||||
|
||||
on: push
|
||||
|
||||
jobs:
|
||||
test:
|
||||
# https://molecule.readthedocs.io/en/latest/ci.html#github-actions
|
||||
runs-on: ubuntu-latest
|
||||
# https://docs.github.com/en/free-pro-team@latest/actions/reference/context-and-expression-syntax-for-github-actions#github-context
|
||||
if: contains(github.ref, 'refs/heads/')
|
||||
steps:
|
||||
- name: Check out the codebase
|
||||
uses: actions/checkout@v2
|
||||
with:
|
||||
path: "${{ github.repository }}"
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v2
|
||||
- name: Set up Docker
|
||||
uses: docker-practice/actions-setup-docker@master
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python3 -m pip install --upgrade pip
|
||||
python3 -m pip install molecule[ansible,docker]
|
||||
ansible --version
|
||||
docker --version
|
||||
molecule --version
|
||||
python --version
|
||||
- name: Test with molecule
|
||||
run: |
|
||||
cd ansible
|
||||
molecule test
|
||||
working-directory: "${{ github.repository }}"
|
10
.travis.yml
10
.travis.yml
@ -33,16 +33,6 @@ jobs:
|
||||
- ng build --prod
|
||||
after_success: true
|
||||
|
||||
- name: "Ansible role"
|
||||
sudo: required
|
||||
services:
|
||||
- docker
|
||||
install:
|
||||
- python3 -m pip install molecule[ansible,docker]
|
||||
script:
|
||||
- cd ansible/
|
||||
- molecule test
|
||||
after_success: true
|
||||
|
||||
before_install:
|
||||
- sudo apt-get update -qq
|
||||
|
Loading…
x
Reference in New Issue
Block a user