Skip to content

Commit

Permalink
Create check.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Nyrest authored May 4, 2024
1 parent f087de3 commit 7b17b92
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Check

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

env:
CARGO_TERM_COLOR: always

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

steps:
- uses: actions/checkout@v4
- 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: Run build script
run: python ./pack.py

0 comments on commit 7b17b92

Please sign in to comment.