Skip to content

Remove Channel::remote_node_name_ (#14) #37

Remove Channel::remote_node_name_ (#14)

Remove Channel::remote_node_name_ (#14) #37

Workflow file for this run

name: Mage CI
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, macOS-latest]
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, which is the CWD for
# the rest of the steps.
- uses: actions/checkout@v2
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip3 install -r mage/public/parser/requirements.txt;
# Caches and restores the bazel build directory.
- name: Cache bazel build results
uses: actions/[email protected]
env:
cache-name: bazel-cache
with:
path: ~/.cache/bazel
key: ${{ runner.os }}-${{ env.cache-name }}-${{ github.ref }}
restore-keys: |
${{ runner.os }}-${{ env.cache-name }}-master
- name: Build
run: bazel build mage/mage_tests
- name: Run tests
run: bazel test mage/mage_tests --test_output=all