Add support for Json Web Token verification #199
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
on: | |
pull_request: | |
workflow_dispatch: | |
# this cancels workflows currently in progress if you start a new one | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build-and-test-nix: | |
strategy: | |
fail-fast: false | |
matrix: | |
# macos-12 uses x86-64 machine, macos-14 uses aarch64 | |
os: [macos-12, macos-14, ubuntu-22.04] | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v3 | |
# install nix | |
- uses: cachix/install-nix-action@v23 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
- name: Run all tests | |
run: nix develop -c sh -c 'export ROC=roc && export EXAMPLES_DIR=./examples/ && ./ci/all_tests.sh' | |
- name: Run all tests with debug compiler | |
run: | | |
# use debug compiler | |
sed -i.bak 's/rocPkgs\.cli/rocPkgs.cli-debug/g' flake.nix | |
# make sure substitution was made | |
grep -q "rocPkgs.cli-debug" flake.nix | |
# docs does not work with debug compiler | |
sed -i.bak 's/\$ROC docs.*//g' ./ci/all_tests.sh | |
# for SINGLE_TAG_GLUE_CHECK_OFF=1 see github.com/roc-lang/basic-cli/issues/242 | |
nix develop -c sh -c 'export SINGLE_TAG_GLUE_CHECK_OFF=1 && export ROC=roc && export EXAMPLES_DIR=./examples/ && ./ci/all_tests.sh' |