Skip to content

pr action

pr action #2

Workflow file for this run

name: Build (x86)
on:
pull_request:
branches:
- master
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Install target for x86_64-unknown-linux-gnu
run: rustup target add x86_64-unknown-linux-gnu
- name: Build
run: cargo build --release --target x86_64-unknown-linux-gnu