Skip to content

Commit ad851b0

Browse files
authoredAug 13, 2024··
Add CI (#7)
1 parent e45c012 commit ad851b0

File tree

3 files changed

+44
-3
lines changed

3 files changed

+44
-3
lines changed
 

‎.github/workflows/ci.yml

+41
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# Copyright 2024 Apple Inc. and the Swift Homomorphic Encryption project authors
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
15+
name: CI
16+
permissions:
17+
contents: read
18+
on:
19+
workflow_dispatch:
20+
push:
21+
branches: [ "main" ]
22+
pull_request:
23+
branches: [ "main" ]
24+
types: [opened, reopened, synchronize, ready_for_review]
25+
# Pushing changes to PR stops currently-running CI
26+
concurrency:
27+
group: ${{ github.workflow }}-${{ github.ref }}
28+
cancel-in-progress: true
29+
jobs:
30+
pre-commit:
31+
timeout-minutes: 5
32+
runs-on: ubuntu-latest
33+
steps:
34+
- uses: actions/checkout@v4
35+
- name: Install pre-commit
36+
run: pip install pre-commit
37+
- name: Pre-commit checks
38+
# CI will commit to `main`
39+
run: >
40+
SKIP=no-commit-to-branch
41+
pre-commit run --all-files

‎.pre-commit-config.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@ repos:
5151
- copyright-header.txt
5252
- --allow-past-years
5353
- repo: https://github.com/bufbuild/buf
54-
rev: v1.34.0
54+
rev: v1.36.0
5555
hooks:
5656
- id: buf-lint
5757
- id: buf-format
5858
- id: buf-breaking
59-
args: [--against, '.git#branch=main']
59+
args: [--against, 'https://github.com/apple/swift-homomorphic-encryption-protobuf.git#branch=main']

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ To install `pre-commit`, follow instructions in https://pre-commit.com/. We reco
1212

1313
### Pull Requests:
1414
Before making a commit for a pull request, please run `pre-commit install`.
15-
Then on each commit some basic formatting checks will be run.
15+
Then on each commit some basic formatting checks will be run.

0 commit comments

Comments
 (0)
Please sign in to comment.