Skip to content

Commit e44ae0f

Browse files
authored
Merge pull request #31 from tomarv2/develop
Develop
2 parents 2d697fd + 1f2ebb4 commit e44ae0f

File tree

2 files changed

+155
-3
lines changed

2 files changed

+155
-3
lines changed
+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Bump version
2+
on:
3+
push:
4+
branches:
5+
- main
6+
jobs:
7+
build:
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
- name: Bump version and push tag
12+
id: tag_version
13+
uses: mathieudutour/[email protected]
14+
with:
15+
github_token: ${{ secrets.GITHUB_TOKEN }}
16+
17+
- name: Create a GitHub release
18+
uses: ncipollo/release-action@v1
19+
with:
20+
tag: ${{ steps.tag_version.outputs.new_tag }}
21+
name: Release ${{ steps.tag_version.outputs.new_tag }}
22+
body: ${{ steps.tag_version.outputs.changelog }}

.gitignore

+133-3
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,136 @@ _testmain.go
7979
/test/run.out
8080
/test/times.out
8181

82-
# ignore test file(s)
83-
**test**
84-
.external_modules
82+
# Python
83+
# Editors
84+
.vscode/
85+
.idea/
86+
87+
# Vagrant
88+
.vagrant/
89+
90+
# Mac/OSX
91+
.DS_Store
92+
93+
# Windows
94+
Thumbs.db
95+
96+
# Source for the following rules: https://raw.githubusercontent.com/github/gitignore/master/Python.gitignore
97+
# Byte-compiled / optimized / DLL files
98+
__pycache__/
99+
*.py[cod]
100+
*$py.class
101+
102+
# C extensions
103+
*.so
104+
105+
# Distribution / packaging
106+
.Python
107+
build/
108+
develop-eggs/
109+
dist/
110+
downloads/
111+
eggs/
112+
.eggs/
113+
lib/
114+
lib64/
115+
parts/
116+
sdist/
117+
var/
118+
wheels/
119+
*.egg-info/
120+
.installed.cfg
121+
*.egg
122+
MANIFEST
123+
124+
# PyInstaller
125+
# Usually these files are written by a python script from a template
126+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
127+
*.manifest
128+
*.spec
129+
130+
# Installer logs
131+
pip-log.txt
132+
pip-delete-this-directory.txt
133+
134+
# Unit test / coverage reports
135+
htmlcov/
136+
.tox/
137+
.nox/
138+
.coverage
139+
.coverage.*
140+
.cache
141+
nosetests.xml
142+
coverage.xml
143+
*.cover
144+
.hypothesis/
145+
.pytest_cache/
146+
147+
# Translations
148+
*.mo
149+
*.pot
150+
151+
# Django stuff:
152+
*.log
153+
local_settings.py
154+
db.sqlite3
155+
156+
# Flask stuff:
157+
instance/
158+
.webassets-cache
159+
160+
# Scrapy stuff:
161+
.scrapy
162+
163+
# Sphinx documentation
164+
docs/_build/
165+
166+
# PyBuilder
167+
target/
168+
169+
# Jupyter Notebook
170+
.ipynb_checkpoints
171+
172+
# IPython
173+
profile_default/
174+
ipython_config.py
175+
176+
# pyenv
177+
.python-version
178+
179+
# celery beat schedule file
180+
celerybeat-schedule
181+
182+
# SageMath parsed files
183+
*.sage.py
184+
185+
# Environments
186+
.env
187+
.venv
188+
env/
189+
venv/
190+
ENV/
191+
env.bak/
192+
venv.bak/
193+
194+
# Spyder project settings
195+
.spyderproject
196+
.spyproject
197+
198+
# Rope project settings
199+
.ropeproject
200+
201+
# mkdocs documentation
202+
/site
203+
204+
# mypy
205+
.mypy_cache/
206+
.dmypy.json
207+
dmypy.json
208+
209+
# ignore test related file(s)
210+
**/test**
211+
**.
212+
213+
# ignore terraform external modules
214+
**/.external_modules

0 commit comments

Comments
 (0)