This repository has been archived on 2026-02-12. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
swift-duct-calc/.gitea/workflows/ci.yaml
Michael Housh bbf9a8b390
Some checks failed
CI / Linux Tests (push) Failing after 10s
feat: Setup just directly in ci workflow
2026-01-29 10:43:49 -05:00

26 lines
494 B
YAML

name: CI
on:
push:
branches:
- main
- dev
pull_request:
workflow_dispatch:
jobs:
ubuntu:
name: Linux Tests
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Setup just
shell: bash
run: sudo apt update && apt install -y just
- name: Setup QEMU
uses: docker/setup-qemu-action@v3
- name: Setup buildx
uses: docker/setup-buildx-action@v3
- name: Run tests
run: just docker_tag=test test-docker