Skip to content

Commit

Permalink
fix ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ValdemarGr committed Nov 18, 2023
1 parent 9e4274f commit e3e16b7
Show file tree
Hide file tree
Showing 4 changed files with 88 additions and 0 deletions.
60 changes: 60 additions & 0 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 26 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
description = "Shell for dev";

inputs = {
nixpkgs.url = "nixpkgs/nixos-unstable";
flake-utils.url = "github:numtide/flake-utils";
};

outputs = { flake-utils, self, nixpkgs, ... }:
let
system = flake-utils.lib.system.x86_64-linux;
pkgs = nixpkgs.legacyPackages.${system};
in
{
devShells.${system}.default = pkgs.mkShell {
name = "catcheffect-dev";
nativeBuildInputs = [
pkgs.jdk11
pkgs.scalafmt
pkgs.zsh
pkgs.sbt
pkgs.graalvm-ce
];
};
};
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ import cats.effect.std.UUIDGen
import munit.AnyFixture
import doobie._
import doobie.implicits._
import scala.collection.immutable._

class DoobieRelationalSuite extends RelationalSuiteTables(DoobieIntegraion) {
def intDecoder: Read[Int] = Read[Int]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ import cats.effect.std.UUIDGen
import munit.AnyFixture
import gql.relational.skunk.dsl._
import skunk.data.TransactionStatus
import scala.collection.immutable._

class SkunkRelationalSuite extends RelationalSuiteTables(SkunkIntegration) {
def intDecoder: Decoder[Int] = int4
Expand Down

0 comments on commit e3e16b7

Please sign in to comment.