Day 14 and Day 25 thuiop #304
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: CI | |
on: # yamllint disable-line rule:truthy | |
pull_request: | |
push: | |
branches: | |
- main | |
workflow_dispatch: | |
inputs: | |
days: | |
description: Run specific days (space delimiter) | |
required: true | |
env: | |
INPUTS_DAYS: ${{ github.event.inputs.days }} | |
jobs: | |
# Build | |
build: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 2 | |
- name: Setup image | |
uses: ./.github/actions/setup | |
with: | |
python-version: "3.10" | |
nim-version: "2.0.0" | |
clang-version: "16" | |
deno-version: "v2.x" | |
zig-version: "0.13.0" | |
- name: Build | |
run: ./build.sh |