Skip to content

Atomic Red Team support in threatest #62

Atomic Red Team support in threatest

Atomic Red Team support in threatest #62

Workflow file for this run

name: Tests
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
unit-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
- name: Run unit tests
run: make test
docker-build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Checkout
uses: actions/checkout@v2.5.0
with:
fetch-depth: 0
- name: Build local Docker image
run: docker build .