Skip to content

Commit

Permalink
Merge pull request #1 from dcodesdev/dev
Browse files Browse the repository at this point in the history
0.1.0-beta.1
  • Loading branch information
dcodesdev authored May 11, 2024
2 parents 668ea7c + 03b0b42 commit 0225335
Show file tree
Hide file tree
Showing 15 changed files with 847 additions and 65 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Test and Publish crate

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

env:
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable

- run: cargo test

- name: Publish
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
run: cargo publish || true
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
/target
.env
.env
temp/
Loading

0 comments on commit 0225335

Please sign in to comment.