Skip to content

No bug - debug auth + move to config file (#520) #1068

No bug - debug auth + move to config file (#520)

No bug - debug auth + move to config file (#520) #1068

Workflow file for this run

name: Test
defaults:
run:
shell: bash
on:
push:
branches: [ main, 'release_*' ]
pull_request:
branches: [ main, 'release_*' ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Display Rust version
run: cargo --version
- name: Build
run: cargo build --verbose
- name: Test
run: cargo test --verbose
# many of the shell tests below need jq
- name: Install jq
run: |
sudo apt-get update
sudo apt-get install -y jq
- name: Shell tests
run: |
cd tests
./run_tests.sh
- name: Output format tests
run: |
cd util
make test