Skip to content

Commit

Permalink
πŸ› fix(actions): add release
Browse files Browse the repository at this point in the history
Signed-off-by: xtrm <oss@xtrm.me>
  • Loading branch information
xtrm-en committed Jan 30, 2024
1 parent 26ba172 commit ec4144d
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 0 deletions.
File renamed without changes.
24 changes: 24 additions & 0 deletions .github/workflows/build-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Build (release)

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

env:
CARGO_TERM_COLOR: always

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- name: Check & Clippy
run: cargo check --verbose && cargo clippy --verbose -- -D warnings
- name: Build
run: cargo build --verbose --release
- name: Run tests
run: cargo test --verbose --release

0 comments on commit ec4144d

Please sign in to comment.