blob: 42db1053b9c4600c25059886829bba150eac8078 [file] [log] [blame]
#
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
#
# This GitHub Actions workflow will prepare a environment with Python 3.9
# and the required Python packages, to run the CI tests
# (Ansible-lint, Flake8 etc.) for Fluo-Muchos.
# See also:
# https://docs.github.com/en/free-pro-team@latest/actions/guides/building-and-testing-python
name: CI
on:
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
jobs:
build:
name: ${{ matrix.os }}
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
timeout-minutes: 10
steps:
- uses: actions/checkout@v1
- uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: Install required packages
run: pip install -r ./lib/requirements.txt
- name: Install Azure specific Ansible collections
run: ./scripts/install-ansible-for-azure
- name: Run Fluo-Muchos CI script
run: ./scripts/cibuild