Skip to content

fix: move to correct directory #1

fix: move to correct directory

fix: move to correct directory #1

Workflow file for this run

name: Test
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
test:
name: Run Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.24'
- name: Install dependencies
run: go mod download
working-directory: ./compchem-fileprocessor
- name: Install swag
run: go install github.com/swaggo/swag/cmd/swag@latest
- name: Generate swagger docs
run: swag init -g main.go --output ./docs
working-directory: ./compchem-fileprocessor
- name: Run tests with testcontainers
run: go test -v ./...
working-directory: ./compchem-fileprocessor