Skip to content

Commit

Permalink
gha
Browse files Browse the repository at this point in the history
  • Loading branch information
TateB committed Aug 13, 2024
1 parent 2906704 commit 07d058a
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: CI

on:
push:
branches: [main]
pull_request:

jobs:
test:
name: Hardhat Tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4

- name: Use Bun 1.1.16
uses: oven-sh/setup-bun@v1
with:
bun-version: 1.1.16

- run: bun install --frozen-lockfile

- run: cd ./contracts

- name: Run tests
run: bun run test:hardhat

0 comments on commit 07d058a

Please sign in to comment.