Skip to content

Commit

Permalink
added ci pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
kucherenkovova committed May 20, 2024
1 parent b7f6d60 commit f4d4302
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: 'ci'

on:
push:
branches:
- main
- github-ci
pull_request:

jobs:
ci:
strategy:
matrix:
os: [ 'ubuntu-22.04' ]
go: [ '1.21', '1.22' ]
runs-on: ${{ matrix.os }}
steps:
- name: 'Checkout source code'
uses: 'actions/checkout@v3'

- name: 'Set up Go'
uses: 'actions/setup-go@v4'
with:
go-version: ${{ matrix.go }}

- name: 'Test'
run: go list -f '{{.Dir}}/...' -m | xargs go test

0 comments on commit f4d4302

Please sign in to comment.