Skip to content

Fix code formatting to pass fish_indent linting #5

Fix code formatting to pass fish_indent linting

Fix code formatting to pass fish_indent linting #5

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Fish and Poetry
run: |
sudo apt-add-repository ppa:fish-shell/release-3
sudo apt update
sudo apt install -y fish python3-pip
pip install poetry
- name: Run tests
run: make test-verbose
- name: Run lint
run: make lint