Skip to content

cargo / node & each GitHub Actions setup #1

cargo / node & each GitHub Actions setup

cargo / node & each GitHub Actions setup #1

Workflow file for this run

name: server
on:
pull_request:
branches:
- main
paths:
- "/server/**/*"
- .github/workflows/server.yaml
jobs:
build-check:
runs-on: ubuntu@latest
steps:
- name: checkout
uses: actions/checkout@v4
with:
path: "./server"
- name: install cargo
run: curl https://sh.rustup.rs -sSf | sh
- name: build files
run: cargo build --release