Skip to content

Commit 536fd4f

Browse files
committed
Added GitHub actions.
Some fixes in metadata.
1 parent 5709cdb commit 536fd4f

109 files changed

Lines changed: 26 additions & 4 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/dependabot.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
version: 2
2+
updates:
3+
- package-ecosystem: "pip"
4+
directory: "/"
5+
schedule:
6+
interval: "daily"
7+
allow:
8+
- dependency-type: "all"

.github/workflows/CI.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: CI
2+
on:
3+
push:
4+
branches: [ "master" ]
5+
pull_request:
6+
branches: [ "master" ]
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-20.04
11+
steps:
12+
- name: typical python workflow
13+
uses: KOLANICH-GHActions/typical-python-workflow@master
14+
with:
15+
github_token: ${{ secrets.GITHUB_TOKEN }}

.gitignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
__pycache__
2-
*.pyc
3-
*.pyo
2+
*.py[co]
43
/monkeytype.sqlite3
54
/CocoPy.egg-info
65
/build

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ install_requires =
3636
astor
3737
packages = Coco, CoCoRuntime
3838
include_package_data = True
39-
setup_requires = setuptools_scm;
40-
test_suite = testSuite.__main__
39+
setup_requires = setuptools>=44; wheel; setuptools_scm[toml]>=3.4.3
40+
test_suite = tests.__main__
4141

4242
[options.package_data]
4343
documentation = *
File renamed without changes.

0 commit comments

Comments
 (0)