Add cloud account configuration step #450
Workflow file for this run
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: Check PR fixbackend | |
on: | |
push: | |
tags: | |
- '*.*.*' | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
fixbackend: | |
name: 'fixbackend' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Log in to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and run dev container task | |
uses: devcontainers/[email protected] | |
with: | |
imageName: ghcr.io/someengineering/fixbackend-devcontainer | |
cacheFrom: ghcr.io/someengineering/fixbackend-devcontainer | |
push: always | |
# Change this to be your CI task/script | |
runCmd: nox --envdir /tmp/.nox |