Skip to content

Merge pull request #198 from Flipez/implement-elseif #757

Merge pull request #198 from Flipez/implement-elseif

Merge pull request #198 from Flipez/implement-elseif #757

Workflow file for this run

name: Test
on:
push:
tags-ignore:
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.21
- name: Test
run: ./coverage.sh
- name: Codecov
uses: codecov/codecov-action@v2
with:
file: ./coverage.txt
token: ${{ secrets.CODECOV_TOKEN }}