Skip to content

Commit

Permalink
Merge pull request #45 from SFDO-Tooling/feature/use-actions
Browse files Browse the repository at this point in the history
Switch from CircleCI to GitHub Actions
  • Loading branch information
davidmreed authored Jun 23, 2022
2 parents 1d40b81 + 02e88d3 commit 63d24f2
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 18 deletions.
18 changes: 0 additions & 18 deletions .circleci/config.yml

This file was deleted.

31 changes: 31 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
name: Feature Test

on:
workflow_dispatch:
pull_request:
types: [opened, synchronize, reopened] # Default
push:
branches:
- main

jobs:
test:
runs-on: sfdc-ubuntu-latest
strategy:
matrix:
environment: ["py38-django22", "py38-django30"]
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Setup Python 3.8
uses: actions/setup-python@v2
with:
python-version: 3.8
cache: pip
cache-dependency-path: requirements.txt
- name: Run Tests
run: |
pip install -r requirements.txt
tox -e ${{ matrix.environment }}

0 comments on commit 63d24f2

Please sign in to comment.