Skip to content

Fix git error in github workflow #13

Fix git error in github workflow

Fix git error in github workflow #13

Workflow file for this run

name: Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
container: nimlang/choosenim
strategy:
matrix:
nim: [ stable, 1.6.14 ]
steps:
- uses: actions/checkout@v1
- name: Choose Nim
run: choosenim update -y ${{ matrix.nim }}
- name: Safe git directory
run: git config --global --add safe.directory "$(pwd)"
- name: Build
run: nimble build -y