Skip to content

Commit

Permalink
Create action for running tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Deralden authored Apr 11, 2024
1 parent 24dbff8 commit 6682a4f
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: tests
on:
# push:
# branches: [ "master" ]
pull_request:
branches: [ "master" ]
workflow_dispatch:

jobs:
run_tests:
runs-on: ubuntu-latest
steps:

- name: clone repo
uses: actions/checkout@v3

- name: download and install
uses: actions/setup-go@v5
with:
go-version: '${{ vars.VERSION }}'

- name: protobuff install
run: |
apt update
apt install protobuf-compiler
- name: check version
run: go version

- name: check folder
run: ls

0 comments on commit 6682a4f

Please sign in to comment.