Skip to content

Commit 96c17a2

Browse files
committed
Initial Commit
0 parents  commit 96c17a2

File tree

12 files changed

+2376
-0
lines changed

12 files changed

+2376
-0
lines changed

.github/workflows/run.disabled.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Make sure to enable this workflow on uses
2+
on: push
3+
4+
jobs:
5+
run:
6+
runs-on: ubuntu-latest
7+
steps:
8+
- name: "Update rust"
9+
run: |
10+
rustup update
11+
rustup toolchain install nightly
12+
rustup default nightly
13+
- name: "Checkout repository"
14+
uses: actions/checkout@v3
15+
- name: "Build Package"
16+
working-directory: ${{github.workspace}}
17+
run: |
18+
cargo build
19+
- name: "Run Package"
20+
working-directory: ${{github.workspace}}
21+
env:
22+
GITHUB_TOKEN: ${{secrets.ISSUES_GITHUB_TOKEN}}
23+
run: |
24+
cargo run
25+

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/target

0 commit comments

Comments
 (0)