From 9f7c2e9bf63cb69a1cb8e00545e198338ca05428 Mon Sep 17 00:00:00 2001 From: Masaya Tojo Date: Mon, 18 Mar 2024 01:04:22 +0900 Subject: Execute raco pkg new. --- .github/workflows/ci.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/ci.yml (limited to '.github') diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..ffba072 --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,29 @@ +on: [push, pull_request] +name: CI +jobs: + build: + name: "Build on Racket '${{ matrix.racket-version }}' (${{ matrix.racket-variant }})" + runs-on: ubuntu-latest + continue-on-error: ${{ matrix.experimental || false }} + strategy: + fail-fast: false + matrix: + racket-version: ["stable", "current"] + racket-variant: ["BC", "CS"] + include: + - racket-version: current + experimental: true + steps: + - uses: actions/checkout@v3.1.0 + - uses: Bogdanp/setup-racket@v1.9.1 + with: + architecture: x64 + distribution: full + variant: ${{ matrix.racket-variant }} + version: ${{ matrix.racket-version }} + - name: Installing diary-system and its dependencies + run: raco pkg install --no-docs --auto --name diary-system + - name: Compiling diary-system and building its docs + run: raco setup --check-pkg-deps --unused-pkg-deps diary-system + - name: Testing diary-system + run: raco test -x -p diary-system -- cgit v1.2.3