diff options
author | inoas <mail@inoas.com> | 2022-12-04 20:41:59 +0100 |
---|---|---|
committer | Louis Pilfold <louis@lpil.uk> | 2022-12-05 10:42:46 +0000 |
commit | 5eeb43f8b0bb38cc22b6f224e3183d794eb73b0c (patch) | |
tree | 6cf039a6221f3006a5a889ab58210b2914fa0931 /.github | |
parent | 74286adb1456ce4336fab32c281f65b3bffda894 (diff) | |
download | gleam_stdlib-5eeb43f8b0bb38cc22b6f224e3183d794eb73b0c.tar.gz gleam_stdlib-5eeb43f8b0bb38cc22b6f224e3183d794eb73b0c.zip |
attempt to fix cicd
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci.yml | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1a9b41e..a72b70f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,7 +3,7 @@ name: CI on: push: branches: - - "main" + - "main_ci_tinkering" - "v*.*.*" pull_request: @@ -11,14 +11,14 @@ jobs: test: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2.0.0 - - uses: erlef/setup-beam@v1.13.0 + - uses: actions/checkout@v2.5.0 + - uses: erlef/setup-beam@v1.15.0 with: - otp-version: "23.2" - gleam-version: "0.25.0-rc1" - - uses: actions/setup-node@v2 + otp-version: "24.2" + gleam-version: "0.25.0" + - uses: actions/setup-node@v3.5.1 with: - node-version: "16.0.0" + node-version: "16.18.1" - run: gleam test --target erlang - run: gleam test --target javascript - run: gleam format --check src test |