Add actions file
This commit is contained in:
parent
5631773efd
commit
d1f09d4463
2 changed files with 18 additions and 0 deletions
16
.gitea/workflows/pull_request.yaml
Normal file
16
.gitea/workflows/pull_request.yaml
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
name: Gavania Merge Build
|
||||||
|
run_name: Test successful gavania build on merge request
|
||||||
|
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
types: [opened, reopened, edited, review_requested, synchronize]
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
steps:
|
||||||
|
- uses: https://github.com/actions/checkout@v3
|
||||||
|
|
||||||
|
- uses: https://github.com/dtolnay/rust-toolchain@stable
|
||||||
|
|
||||||
|
- name: Build
|
||||||
|
run: cargo build
|
|
@ -1,3 +1,5 @@
|
||||||
|
#![allow(non_camel_case_types)]
|
||||||
|
|
||||||
use std::mem;
|
use std::mem;
|
||||||
|
|
||||||
use crate::rfactor_structs::*;
|
use crate::rfactor_structs::*;
|
||||||
|
|
Loading…
Reference in a new issue