-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Release 0.9.5
- Loading branch information
Hirotaka Wakabayashi
authored
Dec 1, 2020
1 parent
fc45891
commit 6775cc1
Showing
8 changed files
with
119 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
name: CI | ||
|
||
on: | ||
# Trigger the workflow on push or pull request, | ||
# but only for the master branch | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
jobs: | ||
build: | ||
|
||
if: "! contains(toJSON(github.event.commits.*.message), '[skip ci]') && ! contains(toJSON(github.event.commits.*.message), '[ci skip]')" | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
python-version: ['3.6', '3.7', '3.8'] | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Python ${{ matrix.python-version }} | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: ${{ matrix.python-version }} | ||
- name: Install dependencies | ||
run: | | ||
make init | ||
- name: Lint with flake8, mypy, pylint and checkdocs | ||
run: | | ||
# stop the build if there are Python syntax errors or undefined names | ||
make lint | ||
- name: Run tests | ||
run: | | ||
make test | ||
- name: Check coverage | ||
run: | | ||
make coverage | ||
- name: Make docs | ||
run: | | ||
make docs | ||
- name: Make dist package | ||
run: | | ||
make dist | ||
- name: Install the package locally | ||
run: | | ||
make install |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,7 +32,7 @@ | |
'version', | ||
] | ||
__author__ = 'Hirotaka Wakabayashi <[email protected]>' | ||
__version__ = '0.9.3' | ||
__version__ = '0.9.5' | ||
|
||
import argparse | ||
import logging | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
%global srcname k2hr3_osnl | ||
%global pypi_name k2hr3-osnl | ||
Name: python-k2hr3-osnl | ||
Version: 0.9.3 | ||
Version: 0.9.4 | ||
Release: 1%{?dist} | ||
Summary: An OpenStack notification listener for K2HR3 | ||
|
||
|
@@ -83,6 +83,12 @@ rm -rf %{buildroot}/usr/etc/k2hr3/k2hr3-osnl.conf | |
%{_mandir}/man1/k2hr3-osnl.1* | ||
|
||
%changelog | ||
* Tue Dec 01 2020 Hirotaka Wakabayashi <[email protected]> 0.9.5-1 | ||
- Update for Release Version 0.9.5 | ||
|
||
* Tue Dec 01 2020 Hirotaka Wakabayashi <[email protected]> 0.9.4-1 | ||
- Update for Release Version 0.9.4 | ||
|
||
* Mon Nov 30 2020 Hirotaka Wakabayashi <[email protected]> 0.9.3-1 | ||
- Update for Release Version 0.9.3 | ||
|
||
|