Problem: event_query_tx is not optional #266
Workflow file for this run
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: test | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
tags: | |
- "*" | |
jobs: | |
lint: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Upgrade poetry | |
run: python3 -m pip install --user --upgrade poetry | |
- name: Install dependencies | |
run: poetry install | |
- name: Run linting | |
run: make lint | |
tests: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: install dependencies | |
run: python3 -m pip install --user --upgrade poetry | |
- name: install | |
run: poetry install | |
- name: Run tests | |
run: make test | |
nix-flake: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: cachix/install-nix-action@v15 | |
- run: nix run |