Skip to content

Commit

Permalink
First Draft (#2)
Browse files Browse the repository at this point in the history
Co-authored-by: Zeeshan Lakhani <zeeshan@fission.codes>
  • Loading branch information
expede and Zeeshan Lakhani authored Dec 19, 2022
1 parent 6b97ec6 commit bb6f14f
Show file tree
Hide file tree
Showing 41 changed files with 8,373 additions and 58 deletions.
1 change: 1 addition & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
DATABASE_URL=ipvm.db
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Default
* @expede
* @expede @zeeshanlakhani
5 changes: 5 additions & 0 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Checkout Repository
uses: actions/checkout@v3

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/bench.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Checkout Repository
uses: actions/checkout@v3

Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Checkout Repository
uses: actions/checkout@v3

Expand Down
12 changes: 10 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,10 @@ concurrency:
jobs:
release-please:
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' && github.repository_owner == 'ipvm-wg'
if: >
github.ref == 'refs/heads/main' &&
github.repository_owner == 'ipvm-wg' &&
github.event.workflow_run.conclusion == 'success'
outputs:
release_created: ${{ steps.release.outputs.release_created }}
Expand All @@ -34,7 +37,7 @@ jobs:
default-branch: main
command: manifest
extra-files: |
Cargo.toml
README.md
publish-release:
runs-on: ubuntu-latest
Expand All @@ -47,6 +50,11 @@ jobs:
if: ${{ needs.release-please.outputs.release_created || github.event.inputs.force-publish }}

steps:
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Checkout Repository
uses: actions/checkout@v3

Expand Down
12 changes: 11 additions & 1 deletion .github/workflows/tests_and_checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,13 @@ jobs:
- stable
- nightly
# minimum version
- 1.64
- 1.65
steps:
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Checkout Repository
uses: actions/checkout@v3

Expand Down Expand Up @@ -83,6 +88,11 @@ jobs:
- stable
- nightly
steps:
- name: Install Protoc
uses: arduino/setup-protoc@v1
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}

- name: Checkout Repository
uses: actions/checkout@v3

Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
# Other files + dirs
private
*.temp
*.db
*.tmp
.history
.DS_Store
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"ipvm": "0.1.0"
".": "0.1.0"
}
Loading

0 comments on commit bb6f14f

Please sign in to comment.