This repository has been archived by the owner on May 17, 2024. It is now read-only.
Removed usage of deprecated syntax of byte concat function #366
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ci | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
jobs: | |
format_lint: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up Deno | |
uses: denoland/setup-deno@v1 | |
- name: Format | |
run: deno task fmt_check | |
- name: Format | |
run: deno task lint | |
- name: Check Valid Data | |
run: deno run --allow-read ./_tools/check_valid_data.ts | |
- name: Test | |
run: deno task test |