Skip to content

bump version

bump version #20

Workflow file for this run

name: "main"
on:
- push
jobs:
configure:
runs-on: ubuntu-latest
outputs:
uid_gid: ${{ steps.get-user.outputs.uid_gid }}
datetime: ${{ steps.get-datetime.outputs.datetime }}
steps:
- id: get-user
run: echo "::set-output name=uid_gid::$(id -u):$(id -g)"
- id: get-datetime
run: echo "::set-output name=datetime::$(date +'%Y%m%d%H%M%S')"
build:
needs: [ configure ]
container:
image: zondax/rust-ci:latest
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
submodules: true
- name: Install node
uses: actions/setup-node@v2
with:
node-version: "^16.10.0"
- name: Install dependencies
run: yarn install
- name: Run test
run: yarn test