Merge pull request #1 from StacklokLabs/adds-fetch-server #1
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# These set of workflows run on every push to the main branch | |
name: Main build | |
permissions: | |
contents: read | |
on: | |
workflow_dispatch: | |
push: | |
branches: [ main ] | |
jobs: | |
linting: | |
name: Linting | |
uses: ./.github/workflows/lint.yml | |
tests: | |
name: Tests | |
uses: ./.github/workflows/test.yml | |
build: | |
name: Build | |
uses: ./.github/workflows/build.yml |