Skip to content

Commit

Permalink
action test
Browse files Browse the repository at this point in the history
  • Loading branch information
sayem314 committed Sep 26, 2024
1 parent f493584 commit d980010
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Test

on:
push:
branches: [main]
pull_request:
branches: [main]

jobs:
test:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.23"

- name: Install dependencies
run: go mod tidy

- name: Run tests
env:
DEEZER_ARL: ${{ secrets.DEEZER_ARL }}
run: go test -v ./...

0 comments on commit d980010

Please sign in to comment.