diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 15c846f..964864a 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -47,12 +47,13 @@ jobs: steps: - uses: actions/checkout@v1 - run: | - apt --help + apt update --help + apt install --help apt-get update -y apt-get install -y nodejs - - uses: jiro4989/setup-nim-action@v1 - with: - nim-version: ${{ matrix.nim-version }} + - name: Install Nim + run: | + curl https://nim-lang.org/choosenim/init.sh -sSf | sh - run: nimble install -y - run: nimble test - run: nimble checkExamples