Fixed absolute path and stopped azure trying to use custom domain #42
This file contains 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
name: build_and_test | |
on: | |
pull_request: | |
branches: [ main, dev ] | |
jobs: | |
build: | |
# use ubuntu-latest image to run steps on | |
runs-on: ubuntu-latest | |
steps: | |
# uses GitHub's checkout action to checkout code from the main branch | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build | |
uses: ./.github/actions/build | |
# test: | |
# needs: build | |
# runs-on: ubuntu-latest |