Skip to content

Commit

Permalink
ci: testing ci
Browse files Browse the repository at this point in the history
  • Loading branch information
AH-dark committed Mar 23, 2024
1 parent 8814133 commit 5472220
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Go
on:
push:
branches:
- main
pull_request:
branches:
- main

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

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.21
cache-dependency-path: |
go.sum
components/*/go.sum
- name: Install dependencies
run: go mod download

- name: Run tests
run: go test -v ./...
19 changes: 19 additions & 0 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Rust
on:
push:
branches:
- main
pull_request:
branches:
- main

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

- name: Run tests
run: cargo test

0 comments on commit 5472220

Please sign in to comment.