1
0
Fork 0
mirror of https://github.com/diamondburned/arikawa.git synced 2025-11-28 23:36:43 +00:00

*: Limit integration testing to one at a time in CI

This commit is contained in:
diamondburned 2023-11-04 02:45:18 -07:00
parent 6f4737aedc
commit 47ce508089
No known key found for this signature in database
GPG key ID: D78C4471CE776659

View file

@ -5,7 +5,18 @@ on:
pull_request:
jobs:
test:
nix-env:
name: Initialize Nix
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Nix packages
uses: diamondburned/cache-install@main
generate:
name: Generate
needs: [nix-env]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
@ -22,9 +33,45 @@ jobs:
exit 1
fi
build:
name: Build
runs-on: ubuntu-latest
needs: [generate]
steps:
- uses: actions/checkout@v2
- name: Install Nix packages
uses: diamondburned/cache-install@main
- name: Build
run: |
go build ./...
run: go build ./...
- name: Run Unit Tests
run: go test ./...
unit-test:
name: Unit Test
runs-on: ubuntu-latest
needs: [build]
steps:
- uses: actions/checkout@v2
- name: Install Nix packages
uses: diamondburned/cache-install@main
- name: Test
run: go test ./...
integration-test:
name: Integration Test
concurrency: integration-test
runs-on: ubuntu-latest
needs: [build]
steps:
- uses: actions/checkout@v2
- name: Install Nix packages
uses: diamondburned/cache-install@main
- name: Test
run: |