Initial swing #1
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: test suite | |
on: [ push, pull_request ] | |
jobs: | |
build: | |
name: build-container | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install nix | |
uses: cachix/install-nix-action@v27 | |
- name: install just | |
uses: extractions/setup-just@v2 | |
- name: login to ghcr.io | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: build container | |
run: just build-container debug | |
- name: push container | |
run: just push-container debug |