Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
Moelf committed Nov 30, 2023
0 parents commit 0c8cc65
Show file tree
Hide file tree
Showing 4 changed files with 39 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: CI
on:
pull_request:
branches:
- main
push:
branches:
- main
tags: '*'
jobs:
test:
name: ${{ matrix.os }} - ${{ matrix.arch }} - ${{ github.event_name }}
runs-on: ${{ matrix.os }}
continue-on-error: false
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
arch: [x64]
steps:
- uses: actions/checkout@v2
- name: Setup Julia
uses: julia-actions/setup-julia@v1
with:
version: 1.9
arch: ${{ matrix.arch }}
- uses: julia-actions/cache@v1
- name: Setup Cpp
uses: bazelbuild/setup-bazelisk@v2
- name: Mount bazel cache
uses: actions/cache@v3
with:
path: "~/.cache/bazel"
key: bazel
1 change: 1 addition & 0 deletions inputs/00_moelf.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
this is a test input as 0th day doesn't exist, human counts from 1.
2 changes: 2 additions & 0 deletions solutions/00_moelf.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
hello world
solution 2
2 changes: 2 additions & 0 deletions src/julia/00.jl
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
println("hello world")
println("solution 2")

0 comments on commit 0c8cc65

Please sign in to comment.