Update tool_request.md #368
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
name: PR/Push | |
on: | |
workflow_dispatch: | |
inputs: | |
pull_request: | |
push: | |
branches: | |
- main | |
jobs: | |
build-linux-x86_64: | |
name: Build - linux x86_64 | |
runs-on: ubuntu-20.04 | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Setup build environment | |
run: make setup-dev | |
- name: Run tests | |
run: make test | |
- name: Build artifacts | |
run: make build |