Skip to content

Commit a45c18c

Browse files
author
Jean-Louis Fuchs
authored
Merge pull request #44 from ganwell/t/tooling_d112
feat: replace old tooling with a modern one
2 parents 914c0aa + 131bfb9 commit a45c18c

Some content is hidden

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

80 files changed

+2193
-21748
lines changed

.aptly-bin/LICENSE

-21
This file was deleted.

.aptly-bin/README.rst

-106
This file was deleted.

.editorconfig

-10
This file was deleted.

.flake8

-3
This file was deleted.

.github/workflows/testing.yml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Tests
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
pull_request:
8+
branches:
9+
- main
10+
schedule:
11+
- cron: "0 0 * * 0"
12+
13+
jobs:
14+
build:
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- name: Checkout code
19+
uses: actions/checkout@v2
20+
21+
- name: Run build
22+
run: |
23+
make up push
24+
25+
- name: Run tests
26+
run: |
27+
make test

.gitignore

-16
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,2 @@
1-
/pyaptly.egg-info
2-
*.swp
3-
*.pyc
4-
.python-version
51
__pycache__
6-
/.cache
72
/.hypothesis
8-
/.coverage
9-
/.vagrant
10-
/build
11-
/doc/_build
12-
.hypothesis
13-
/.deps
14-
/.gnupg
15-
/.aptly.conf
16-
/.aptly
17-
/.local
18-
.work

.gitlab-ci.yml

-28
This file was deleted.

.gitmodules

-9
This file was deleted.

.requirements.txt

-3
This file was deleted.

.travis.yml

-11
This file was deleted.

0 commit comments

Comments
 (0)