Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitb53b9e5

Browse files
CI: Migrate to Github Actions and drop python2
Signed-off-by: Robbie Harwood <rharwood@redhat.com>
1 parent8718174 commitb53b9e5

File tree

4 files changed

+36
-30
lines changed

4 files changed

+36
-30
lines changed

‎.github/workflows/build.yml‎

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
{
2+
"name":"Build",
3+
"on":{ "pull_request": null },
4+
"jobs":{
5+
"linux":{
6+
"runs-on":"ubuntu-latest",
7+
"strategy":{
8+
"fail-fast":false,
9+
"matrix":{
10+
"python":[
11+
"3.6",
12+
"3.7",
13+
"3.8",
14+
"3.9",
15+
],
16+
},
17+
},
18+
"steps":[
19+
{ "uses": "actions/checkout@v2" },
20+
{
21+
"uses":"actions/setup-python@v2",
22+
"with":{ "python-version": "${{ matrix.python }}"},
23+
},
24+
{ "run": "sudo apt update" },
25+
{ "run": "sudo apt install -y libkrb5-dev" },
26+
{ "run": "pip install flake8 mock" },
27+
{ "run": "pip install -r requirements.txt" },
28+
{ "run": "python3 -m unittest" },
29+
{
30+
"run":"flake8",
31+
"if":"${{ matrix['python'] == 3.9 }}",
32+
},
33+
],
34+
},
35+
},
36+
}

‎.travis.install.sh‎

Lines changed: 0 additions & 9 deletions
This file was deleted.

‎.travis.sh‎

Lines changed: 0 additions & 7 deletions
This file was deleted.

‎.travis.yml‎

Lines changed: 0 additions & 14 deletions
This file was deleted.

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp