Skip to content

Create techstack.yml #27

Create techstack.yml

Create techstack.yml #27

Workflow file for this run

name: Build
on:
push:
pull_request:
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest]
rust: [stable, nightly]
steps:
- uses: hecrj/setup-rust-action@v1
with:
rust-version: ${{ matrix.rust }}
- uses: actions/checkout@master
- name: Run config
run: make config
- name: Run ci
run: make ci
- name: Run run
run: make run