Skip to content

added functionality for balance enquiry and withdrawal #9

added functionality for balance enquiry and withdrawal

added functionality for balance enquiry and withdrawal #9

Workflow file for this run

name: CI/CD for building Bankie
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Build
run: go build ./cmd/app
- name: Test
run: go test -v ./...