From f54176c88054f9d23720f7943ff6ff2d5b2ede42 Mon Sep 17 00:00:00 2001 From: Emilien Mantel Date: Tue, 30 May 2023 12:44:15 +0200 Subject: [PATCH] :construction_worker: Add Github Action --- .github/workflows/ci.yml | 43 ++++++++++++++++++++++++++++++++++ .github/workflows/galaxy.yml | 17 ++++++++++++++ .github/workflows/molecule.yml | 35 +++++++++++++++++++++++++++ 3 files changed, 95 insertions(+) create mode 100644 .github/workflows/ci.yml create mode 100644 .github/workflows/galaxy.yml create mode 100644 .github/workflows/molecule.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..c783900 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,43 @@ +--- + +name: ci +'on': + pull_request: + push: + branches: + - master + +jobs: + + yaml-lint: + name: YAML Lint + runs-on: ubuntu-latest + steps: + + - name: Fetch code + uses: actions/checkout@v3 + + - name: Set up Python 3. + uses: actions/setup-python@v2 + with: + python-version: '3.x' + + - name: Install test dependencies. + run: pip3 install yamllint + + - name: Lint code. + run: | + yamllint . + + ansible-lint: + name: Ansible Lint + runs-on: ubuntu-latest + + steps: + - name: Fetch code + uses: actions/checkout@v3 + with: + fetch-depth: 0 + + - name: Run ansible-lint + uses: ansible/ansible-lint-action@v6.15.0 diff --git a/.github/workflows/galaxy.yml b/.github/workflows/galaxy.yml new file mode 100644 index 0000000..6ccf841 --- /dev/null +++ b/.github/workflows/galaxy.yml @@ -0,0 +1,17 @@ +--- + +name: Deploy on Ansible Galaxy + +'on': + - push + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: checkout + uses: actions/checkout@v2 + - name: galaxy + uses: robertdebock/galaxy-action@1.2.0 + with: + galaxy_api_key: ${{ secrets.galaxy_api_key }} diff --git a/.github/workflows/molecule.yml b/.github/workflows/molecule.yml new file mode 100644 index 0000000..948b727 --- /dev/null +++ b/.github/workflows/molecule.yml @@ -0,0 +1,35 @@ +--- +name: Molecule + +'on': + pull_request: + push: + branches: + - master + +jobs: + build: + runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + scenario: + - debian-10 + - debian-11 + - debian-12 + - ubuntu-18.04 + - ubuntu-20.04 + - ubuntu-22.04 + + steps: + - name: Checkout + uses: actions/checkout@v3 + with: + path: "${{ github.repository }}" + + - name: Molecule + uses: gofrolist/molecule-action@v2.3.19 + with: + molecule_options: --base-config molecule/_shared/base.yml + molecule_args: --scenario-name ${{ matrix.scenario }} + molecule_working_dir: "HanXHX/ansible-php"