Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
matsimitsu committed Feb 6, 2024
0 parents commit eb4d5a9
Show file tree
Hide file tree
Showing 50 changed files with 4,149 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
on:
release:
types: [created]

jobs:
release:
name: Build Release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Compile and release
uses: rust-build/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SRC_DIR: "bin"
with:
RUSTTARGET: x86_64-unknown-linux-musl
18 changes: 18 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Rust

on:
push:
branches: ["main", "develop"]
pull_request:
types: [opened, reopened, synchronize]

env:
CARGO_TERM_COLOR: always

jobs:
build:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
- run: cargo test --all-features
4 changes: 4 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/target
.DS_Store
.cargo
Makefile
Loading

0 comments on commit eb4d5a9

Please sign in to comment.