Bump pynacl from 1.5.0 to 1.6.2 in /lib/poseidon_core #6512
This file contains hidden or 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: [push, pull_request] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: shell_test | |
| run: | | |
| wget "https://github.com/koalaman/shellcheck/releases/download/stable/shellcheck-stable.linux.x86_64.tar.xz" && \ | |
| tar --xz -xvf "shellcheck-stable.linux.x86_64.tar.xz" && \ | |
| shellcheck() { "shellcheck-stable/shellcheck" "$@"; } && \ | |
| shellcheck --version && \ | |
| /bin/bash --version && /bin/bash -n bin/poseidon && shellcheck -x -e SC2016 -e SC2119 -e SC2129 -e SC2001 -e SC2038 -e SC2044 bin/poseidon | |
| - name: e2e_test | |
| run: | | |
| export DEBIAN_FRONTEND=noninteractive && \ | |
| echo 'debconf debconf/frontend select Noninteractive' | sudo debconf-set-selections | |
| sudo apt-get update && sudo apt-get install -y libev-dev tshark wget jq tcpreplay tcpdump | |
| docker system prune -a -f --volumes && ./tests/test_e2e.sh |