Skip to content

ci: remove IaC for integration tests in favor of Github workflow service #128

ci: remove IaC for integration tests in favor of Github workflow service

ci: remove IaC for integration tests in favor of Github workflow service #128

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
setup:
runs-on: ubuntu-latest
steps:
- name: Cancel previous
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
unit-tests:
strategy:
matrix:
go-version: [1.x, 1.21.x]
platform: [ubuntu-latest]
include:
- go-version: 1.x
platform: ubuntu-latest
update-coverage: true
runs-on: ${{ matrix.platform }}
needs: [setup]
services:
ctfd:
image: ctfd/ctfd:3.6.1
ports: 8000:8000

Check failure on line 27 in .github/workflows/ci.yaml

View workflow run for this annotation

GitHub Actions / CI

Invalid workflow file

The workflow is not valid. .github/workflows/ci.yaml (Line: 27, Col: 16): Unexpected value '8000:8000'
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go-version }}
- name: Cache go modules
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-go-
- name: Run go tests
run: make tests
env:
CTFD_URL: ctfd:8000
- name: Upload coverage to Coveralls
if: ${{ matrix.update-coverage }}
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: functional.out
go-lint:
runs-on: ubuntu-latest
needs: [setup]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: 1.21.x
- name: go-lint
uses: golangci/golangci-lint-action@v3