Skip to content

Commit 633a157

Browse files
committed
first commit
0 parents  commit 633a157

28 files changed

+835
-0
lines changed

.github/dependabot.yml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "pip"directory: "/requirements"schedule:
4+
interval: "daily"
5+
labels:
6+
- "maintenance"
7+
- "dependencies"

.github/labeler.yml

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
documentation:
2+
- doc/source/**/*
3+
maintenance:
4+
- .github/**/*
5+
- .flake8
6+
- pyproject.toml
7+
dependencies:
8+
- requirements/*

.github/labels.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
- name: bug
2+
description: Something isn't working
3+
color: d42a34
4+
5+
- name: dependencies
6+
description: Related with project dependencies
7+
color: ffc0cb
8+
9+
- name: documentation
10+
description: Improvements or additions to documentation
11+
color: 0677ba
12+
13+
- name: enhancement
14+
description: New features or code improvements
15+
color: FFD827
16+
17+
- name: good first issue
18+
description: Easy to solve for newcomers
19+
color: 62ca50
20+
21+
- name: maintenance
22+
description: Package and maintenance related
23+
color: f78c37
24+
25+
- name: release
26+
description: Anything related to an incoming release
27+
color: ffffff

.github/workflows/ci_cd.yml

+126
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,126 @@
1+
name: CI
2+
3+
on:
4+
pull_request:
5+
push:
6+
tags:
7+
- "*"
8+
branches:
9+
- main
10+
11+
env:
12+
MAIN_PYTHON_VERSION: '3.7'
13+
14+
concurrency:
15+
group: ${{ github.workflow }}-${{ github.ref }}
16+
cancel-in-progress: true
17+
18+
jobs:
19+
20+
style:
21+
name: Code style
22+
runs-on: ubuntu-latest
23+
steps:
24+
- uses: actions/checkout@v3
25+
- name: Set up Python
26+
uses: actions/setup-python@v4
27+
with:
28+
python-version: ${{ env.MAIN_PYTHON_VERSION }}
29+
- name: Install dependencies
30+
run: |
31+
python -m pip install --upgrade pip tox
32+
- name: Test with tox
33+
run: tox -e style
34+
35+
docs-style:
36+
name: Documentation Style Check
37+
runs-on: ubuntu-latest
38+
steps:
39+
- uses: actions/checkout@v3
40+
41+
- name: Running Vale
42+
uses: errata-ai/vale-action@reviewdog
43+
env:
44+
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
45+
with:
46+
files: doc
47+
reporter: github-pr-check
48+
level: error
49+
filter_mode: nofilter
50+
fail_on_error: true
51+
vale_flags: "--config=doc/.vale.ini"
52+
53+
docs:
54+
name: Documentation
55+
needs: [style, docs-style]
56+
runs-on: ubuntu-latest
57+
steps:
58+
- uses: actions/checkout@v3
59+
60+
- name: Set up Python
61+
uses: actions/setup-python@v4
62+
with:
63+
python-version: ${{ env.MAIN_PYTHON_VERSION }}
64+
65+
- name: Install system dependencies
66+
run: |
67+
sudo apt-get update
68+
sudo apt-get install -y texlive-latex-extra latexmk nodejs npm graphviz
69+
npm install -g @mermaid-js/mermaid-cli
70+
71+
- name: Install Python dependencies
72+
run: |
73+
python -m pip install --upgrade pip tox
74+
75+
- name: Build HTML documentation
76+
run: tox -e doc
77+
78+
- name: Build PDF Documentation
79+
run: |
80+
sudo apt update
81+
sudo apt-get install -y texlive-latex-extra latexmk
82+
python -m pip install -r requirements/requirements_doc.txt
83+
make -C doc pdf
84+
85+
- name: Upload HTML documentation
86+
uses: actions/[email protected]
87+
with:
88+
name: HTML-Documentation
89+
path: .tox/doc_out_html/
90+
retention-days: 7
91+
92+
- name: Upload PDF Documentation
93+
uses: actions/[email protected]
94+
with:
95+
name: PDF-Documentation
96+
path: doc/build/latex/*.pdf
97+
retention-days: 7
98+
99+
- name: Deploy to gh-pages
100+
if: github.event_name == 'push'
101+
uses: JamesIves/[email protected]
102+
with:
103+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
104+
BRANCH: gh-pages
105+
FOLDER: .tox/doc_out_html/
106+
CLEAN: true
107+
SINGLE_COMMIT: true
108+
109+
release:
110+
if: github.event_name == 'push' && contains(github.ref, 'refs/tags')
111+
needs: [style, docs-style, docs]
112+
runs-on: ubuntu-latest
113+
steps:
114+
- uses: actions/checkout@v3
115+
116+
- uses: actions/download-artifact@v3
117+
118+
- name: Display structure of downloaded files
119+
run: ls -R
120+
121+
- name: Release
122+
uses: softprops/action-gh-release@v1
123+
with:
124+
generate_release_notes: true
125+
files: |
126+
./*PDF*/*.pdf

.github/workflows/label.yml

+85
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
name: Labeler
2+
on:
3+
pull_request:
4+
push:
5+
branches: [ main ]
6+
paths:
7+
- '../labels.yml'
8+
9+
concurrency:
10+
group: ${{ github.workflow }}-${{ github.ref }}
11+
cancel-in-progress: true
12+
13+
jobs:
14+
15+
label-syncer:
16+
name: Syncer
17+
runs-on: ubuntu-latest
18+
steps:
19+
- uses: actions/checkout@v3
20+
- uses: micnncim/action-label-syncer@v1
21+
env:
22+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
23+
24+
labeler:
25+
name: Set labels
26+
needs: [label-syncer]
27+
permissions:
28+
contents: read
29+
pull-requests: write
30+
runs-on: ubuntu-latest
31+
steps:
32+
33+
# Label based on modified files
34+
- name: Label based on changed files
35+
uses: actions/labeler@v4
36+
with:
37+
repo-token: ${{ secrets.GITHUB_TOKEN }}
38+
sync-labels: ''
39+
40+
# Label based on branch name
41+
- uses: actions-ecosystem/action-add-labels@v1
42+
if: |
43+
startsWith(github.event.pull_request.head.ref, 'doc') ||
44+
startsWith(github.event.pull_request.head.ref, 'docs')
45+
with:
46+
labels: documentation
47+
48+
- uses: actions-ecosystem/action-add-labels@v1
49+
if: |
50+
startsWith(github.event.pull_request.head.ref, 'maint') ||
51+
startsWith(github.event.pull_request.head.ref, 'no-ci') ||
52+
startsWith(github.event.pull_request.head.ref, 'ci')
53+
with:
54+
labels: maintenance
55+
56+
- uses: actions-ecosystem/action-add-labels@v1
57+
if: startsWith(github.event.pull_request.head.ref, 'feat')
58+
with:
59+
labels: |
60+
enhancement
61+
62+
- uses: actions-ecosystem/action-add-labels@v1
63+
if: |
64+
startsWith(github.event.pull_request.head.ref, 'fix') ||
65+
startsWith(github.event.pull_request.head.ref, 'patch')
66+
with:
67+
labels: bug
68+
69+
commenter:
70+
runs-on: ubuntu-latest
71+
steps:
72+
- name: Suggest to add labels
73+
uses: peter-evans/create-or-update-comment@v2
74+
# Execute only when no labels have been applied to the pull request
75+
if: toJSON(github.event.pull_request.labels.*.name) == '{}'
76+
with:
77+
issue-number: ${{ github.event.pull_request.number }}
78+
body: |
79+
Please add one of the following labels to add this contribution to the Release Notes :point_down:
80+
- [bug](https://github.com/pyansys/pymapdl-techdemos/pulls?q=label%3Abug+)
81+
- [documentation](https://github.com/pyansys/pymapdl-techdemos/pulls?q=label%3Adocumentation+)
82+
- [enhancement](https://github.com/pyansys/pymapdl-techdemos/pulls?q=label%3Aenhancement+)
83+
- [good first issue](https://github.com/pyansys/pymapdl-techdemos/pulls?q=label%3Agood+first+issue)
84+
- [maintenance](https://github.com/pyansys/pymapdl-techdemos/pulls?q=label%3Amaintenance+)
85+
- [release](https://github.com/pyansys/pymapdl-techdemos/pulls?q=label%3Arelease+)

0 commit comments

Comments
 (0)