Skip to content

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

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

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

Workflow file for this run

name: CI

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

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yaml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: container-job
on: [push, pull_request]
jobs:
container-job:
runs-on: ubuntu-latest
container: python:3.9-slim-buster
services:
ctfd:
image: ctfd/ctfd:3.6.1
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]
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