Skip to content

Update gif paths

Update gif paths #43

Workflow file for this run

name: .NET 6 Build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- name: Setup .NET 🛠
uses: actions/setup-dotnet@v1
with:
dotnet-version: 6.0.x
- name: Restore dependencies 🔁
run: dotnet restore source/Lucid.sln
- name: Build 🚧
run: dotnet build source/Lucid.sln --no-restore
- name: Test 🧪
run: dotnet test source/Lucid.sln --no-build --verbosity normal