Skip to content

add ParentTeam field to Team, TeamCreateInput, TeamUpdateInput - test… #854

add ParentTeam field to Team, TeamCreateInput, TeamUpdateInput - test…

add ParentTeam field to Team, TeamCreateInput, TeamUpdateInput - test… #854

Workflow file for this run

name: Tests
on:
push:
branches: [ main ]
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Fetch all tags
run: git fetch --force --tags
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.21"
- name: Install Task
uses: arduino/setup-task@v1
with:
version: 3.x
repo-token: ${{ secrets.GITHUB_TOKEN }}
- name: Run Tests
run: |-
task setup
task lint
task test
- name: Upload Coverage
run: |-
bash <(curl -s https://codecov.io/bash)