CI: test docker style action #24
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: GitHub CI | |
on: | |
pull_request: | |
workflow_dispatch: | |
push: | |
tags: | |
- "*" | |
branches: | |
- main | |
env: | |
MAIN_PYTHON_VERSION: '3.11' | |
MAIN_PYTHON_VERSION_WINDOWS_SELFHOSTED: '3.9' | |
PACKAGE_NAME: 'ansys-geometry-core' | |
DOCUMENTATION_CNAME: 'geometry.docs.pyansys.com' | |
ANSRV_GEO_IMAGE: 'ghcr.io/ansys/geometry' | |
ANSRV_GEO_IMAGE_WINDOWS_TAG: ghcr.io/ansys/geometry:windows-latest | |
ANSRV_GEO_PORT: 700 | |
ANSRV_GEO_LICENSE_SERVER: ${{ secrets.LICENSE_SERVER }} | |
GEO_CONT_NAME: ans_geo | |
RESET_IMAGE_CACHE: 6 | |
IS_WORKFLOW_RUNNING: True | |
ARTIFACTORY_VERSION: v242 | |
MEILISEARCH_API_KEY: ${{ secrets.MEILISEARCH_API_KEY }} | |
MEILISEARCH_HOST_URL: ${{ vars.MEILISEARCH_HOST_URL }} | |
MEILISEARCH_PUBLIC_API_KEY: ${{ secrets.MEILISEARCH_PUBLIC_API_KEY }} | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
# docker-style-0: | |
# name: FAIL - not allowed directory | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout repository | |
# uses: actions/checkout@v4 | |
# - name: PyAnsys dockerfile check | |
# uses: ansys/actions/docker-style@feat/lint_dockerfile | |
# with: | |
# directory: docker_folder | |
docker-style-1: | |
name: FAIL - DS - No Dockerfile | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: PyAnsys dockerfile check | |
uses: ansys/actions/docker-style@feat/lint_dockerfile | |
with: | |
directory: .devcontainer | |
docker-style-2: | |
name: FAIL - DS - No recursive search | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: PyAnsys dockerfile check | |
uses: ansys/actions/docker-style@feat/lint_dockerfile | |
with: | |
directory: docker | |
docker-style-3: | |
name: FAIL - DS - Error level is set to info | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: PyAnsys dockerfile check | |
uses: ansys/actions/docker-style@feat/lint_dockerfile | |
with: | |
directory: docker | |
recursive: true | |
docker-style-4: | |
name: SUCCESS - DS | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
docker-directory: ['docker', '.devcontainer'] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: PyAnsys dockerfile check | |
uses: ansys/actions/docker-style@feat/lint_dockerfile | |
with: | |
directory: ${{ matrix.docker-directory }} | |
recursive: true | |
error-level: 0 | |
docker-style-5: | |
name: SUCCESS - DS multi | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: PyAnsys dockerfile check | |
uses: ansys/actions/docker-style@feat/lint_dockerfile | |
with: | |
directory: "docker .devcontainer" | |
recursive: true | |
error-level: 0 | |
docker-style-6: | |
name: SUCCESS - DS multi | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: PyAnsys dockerfile check | |
uses: ansys/actions/docker-style@feat/lint_dockerfile | |
with: | |
directory: "docker .devcontainer something" | |
recursive: true | |
error-level: 0 | |
code-style-1: | |
name: SUCCESS - CS - No check by default | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: PyAnsys dockerfile check | |
uses: ansys/actions/code-style@feat/lint_dockerfile | |
code-style-2: | |
name: FAIL - CS - No recursive search | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: PyAnsys dockerfile check | |
uses: ansys/actions/code-style@feat/lint_dockerfile | |
with: | |
docker-lint: true | |
code-style-3: | |
name: FAIL - CS - Error level is set to info | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: PyAnsys dockerfile check | |
uses: ansys/actions/code-style@feat/lint_dockerfile | |
with: | |
docker-lint: true | |
docker-recursive: true | |
code-style-4: | |
name: SUCCESS - CS | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: PyAnsys dockerfile check | |
uses: ansys/actions/code-style@feat/lint_dockerfile | |
with: | |
docker-recursive: true | |
docker-error-level: 0 | |
docker-lint: true | |
# docker-lint: | |
# name: Dockerfile linting through code-style action | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Check code style | |
# uses: ansys/actions/code-style@feat/lint_dockerfile | |
# with: | |
# docker-recursive: true | |