Skip to content

Commit

Permalink
new file: .github/workflows/build.yaml
Browse files Browse the repository at this point in the history
	modified:   .github/workflows/pylint.yaml
	modified:   README.md
  • Loading branch information
mmgen committed Nov 11, 2023
1 parent b2c5a67 commit eef0113
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 3 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: build

on:
push:
paths:
- '.github/workflows/*.yaml'
- '**.py'

jobs:
test:
runs-on: ubuntu-latest

strategy:
matrix:
python-version: ["3.9","3.10","3.11"]

steps:
- uses: actions/checkout@v4

- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
cache: 'pip'
cache-dependency-path: |
setup.cfg
- name: Build and install MMGen Wallet
run: |
python3 -m build --no-isolation
python3 -m pip install --user --break-system-packages dist/*.whl
4 changes: 2 additions & 2 deletions .github/workflows/pylint.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
name: pylint-errors
name: pylint

on:
push:
paths:
- '.github/workflows/*.yaml'
- '**.py'
- '**.yaml'

jobs:
test:
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

##### An online/offline cryptocurrency wallet for the command line

![pylint-errors](https://github.com/mmgen/mmgen/workflows/pylint-errors/badge.svg)
![build](https://github.com/mmgen/mmgen/workflows/build/badge.svg)
![pylint](https://github.com/mmgen/mmgen/workflows/pylint/badge.svg)

### Description

Expand Down

0 comments on commit eef0113

Please sign in to comment.