Skip to content

chore: menambahkan fungsi cek bilangan prima (#46) #101

chore: menambahkan fungsi cek bilangan prima (#46)

chore: menambahkan fungsi cek bilangan prima (#46) #101

Workflow file for this run

name: golang test
on:
push:
branches:
- main
pull_request:
jobs:
golang_test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v4
- name: setup go untuk testing
uses: actions/setup-go@v5
with:
go-version: '^1.18'
- name: run unit testing
run: go test $(go list ./... | grep -v 'basic\|intermediate\|utilities')