Skip to content

Commit

Permalink
CI: first draft GitHub Action
Browse files Browse the repository at this point in the history
  • Loading branch information
slivingston committed Jun 11, 2024
1 parent 39712a6 commit 9b2dd43
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
# configuration for GitHub Actions
name: hardshare client
on:
push:
pull_request:
jobs:
build:
name: Build
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Prepare to build
run: |
mkdir keys
touch keys/public.pem
- name: Run tests
run: |
cargo test

0 comments on commit 9b2dd43

Please sign in to comment.