[fix] #192: Added queries for transactions #8
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
name: Iroha 2 main branch workflow | |
on: | |
push: | |
branches: [main] | |
jobs: | |
build: | |
runs-on: iroha-ubuntu-latest | |
container: rust:1.64-buster | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: | | |
apt-get update | |
apt-get install -y --no-install-recommends python3-pip | |
pip3 install --upgrade pip | |
pip3 install maturin | |
- name: Build wheels | |
run: maturin build | |
- name: Archive wheel | |
uses: actions/upload-artifact@v3 | |
with: | |
name: iroha-python | |
path: target/wheels |