Set minimum TLS version to 1.2 (#256) #13
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: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- main | |
permissions: | |
contents: read | |
packages: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Pre-build image and run make in dev container | |
uses: devcontainers/[email protected] | |
with: | |
imageName: ghcr.io/azure-samples/chat-with-your-data-solution-accelerator | |
cacheFrom: ghcr.io/azure-samples/chat-with-your-data-solution-accelerator | |
runCmd: make ci | |
refFilterForPush: refs/heads/main |