Skip to content

Commit

Permalink
Merge branch 'next' of https://github.com/Nyrest/FallrimPriority into…
Browse files Browse the repository at this point in the history
… next
  • Loading branch information
Nyrest committed May 4, 2024
2 parents 3c411b4 + 84d6f05 commit 0b8dbd8
Showing 1 changed file with 58 additions and 0 deletions.
58 changes: 58 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: Check

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

env:
CARGO_TERM_COLOR: always

jobs:
debug-build:
runs-on: windows-latest

steps:
- uses: actions/checkout@v4
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy

- name: Debug build
run: cargo build --verbose
- name: Run tests
run: cargo test --verbose

release-build:
runs-on: windows-latest

steps:
- uses: actions/checkout@v4
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy

- name: Release build
run: cargo build -r --features skyrim_ae,fallout_4

build-script:
runs-on: windows-latest

steps:
- uses: actions/checkout@v4
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
toolchain: nightly
override: true
components: rustfmt, clippy

- name: Run build script
run: python ./pack.py

0 comments on commit 0b8dbd8

Please sign in to comment.