Skip to content

Commit

Permalink
Create rust.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
JopStro authored May 5, 2024
1 parent 696d28f commit 5dde539
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Rust

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: windows-latest

steps:
- uses: actions/checkout@v4
- uses: xpol/setup-lua@v1
with:
lua-version: "luajit-2.0.5"
- name: Build
run: cargo build --verbose --release
env:
LUA_LIB: "./.lua/lib"
- uses: actions/upload-artifact@v2
with:
name: json5.dll
path: target/release/json5.dll

0 comments on commit 5dde539

Please sign in to comment.