Skip to content

Bump github.com/xBlaz3kx/DevX from 0.1.0 to 0.2.3 #60

Bump github.com/xBlaz3kx/DevX from 0.1.0 to 0.2.3

Bump github.com/xBlaz3kx/DevX from 0.1.0 to 0.2.3 #60

Workflow file for this run

name: "Tests"
on:
pull_request:
types: [ opened, synchronize ]
branches:
- main
paths-ignore:
- '.run/**'
- '.vscode/**'
- 'documentation/**'
- '*.md'
workflow_dispatch:
jobs:
# Run unit tests
tests:
name: "Run unit tests"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: "1.22.1"
- name: Install dependencies and run tests
run: |
go mod download
go test -v ./...