Skip to content

Bump actions/download-artifact from 1 to 4.1.7 in /.github/workflows #80

Bump actions/download-artifact from 1 to 4.1.7 in /.github/workflows

Bump actions/download-artifact from 1 to 4.1.7 in /.github/workflows #80

Workflow file for this run

name: test
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
env:
CARGO_TERM_COLOR: always
BUILD_ENV: release
defaults:
run:
shell: bash
jobs:
test:
name: run tests
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
node: [ '12', '14', '16', '17', '18' ]
os: ['ubuntu-latest', 'macos-latest', 'windows-latest']
steps:
- name: checkout
uses: actions/checkout@v2
- name: install node
uses: actions/setup-node@v2-beta
with:
node-version: ${{ matrix.node }}
- name: build
run: |
make setup
make download-cpp-bindings
make do-codegen
make configure
make build
- name: Run tests
run: make test