Skip to content

chore: Update configuration settings for production environment #18

chore: Update configuration settings for production environment

chore: Update configuration settings for production environment #18

Workflow file for this run

name: Build
on:
push:
branches:
- main
pull_request:
branches:
- main
schedule:
- cron: '0 8 * * *' # Every day at 8:00 PM AEDT
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: |
~/.asdf
.tool-versions
key: ${{ runner.os }}-asdf-${{ hashFiles('.tool-versions') }}
restore-keys: |
${{ runner.os }}-asdf-
- uses: asdf-vm/actions/install@v3
- run: make test
- run: make build