Bump golangci/golangci-lint-action from 6.1.0 to 6.1.1 #596
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Container test | |
on: [pull_request] | |
jobs: | |
build: | |
strategy: | |
matrix: | |
test: [mongo_test] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: '3.11' | |
- name: install s3cmd | |
run: pip3 install s3cmd | |
- name: Check out | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22' | |
- name: Build backup-svc container | |
run: docker build -t nbisweden/sda-backup:test . | |
- name: create certificates | |
run: bash ./dev_tools/scripts/make_certs.sh | |
- name: create crypt4gh keys | |
run: bash ./dev_tools/scripts/make_keys.sh | |
- name: Start virtual infrastructure | |
run: docker compose -f ./dev_tools/docker-compose.yml up -d --force-recreate | |
- name: Wait for containers to start | |
run: bash ./dev_tools/scripts/readiness.sh | |
- name: Run test | |
run: bash ./dev_tools/scripts/${{ matrix.test }}.sh docker |