aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorPavel I. Kryukov <pavel.igorevich.kryukov@gmail.com>2022-05-17 20:13:53 +0300
committerGitHub <noreply@github.com>2022-05-17 10:13:53 -0700
commitf9272e8d496a8259f29b952797f595eb9e81078d (patch)
tree53c656baa3ac737bf6e75898567eb7cf033db891 /.github/workflows
parent301686e5b6b93d24ad85200f00ec60197ada86b6 (diff)
downloadriscv-opcodes-f9272e8d496a8259f29b952797f595eb9e81078d.zip
riscv-opcodes-f9272e8d496a8259f29b952797f595eb9e81078d.tar.gz
riscv-opcodes-f9272e8d496a8259f29b952797f595eb9e81078d.tar.bz2
Test error inputs handling, fix few bugs (#119)
* Test error inputs handling * Add mask tests * Apply code review fix
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/tests.yml28
1 files changed, 28 insertions, 0 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml
new file mode 100644
index 0000000..9357293
--- /dev/null
+++ b/.github/workflows/tests.yml
@@ -0,0 +1,28 @@
+name: Unit tests
+
+on:
+ push:
+ branches: [ master ]
+ pull_request:
+ branches: [ master ]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - name: Set up Python 3.8
+ uses: actions/setup-python@v2
+ with:
+ python-version: 3.8
+ - name: Install PyYAML
+ run: |
+ pip3 install -r requirements.txt
+ pip3 install coverage
+ - name: Test error outputs
+ run: coverage run -m unittest -b
+ - name: Generate coverage
+ run: coverage xml
+ - name: Upload coverage
+ uses: codecov/codecov-action@v2
+